Update dependencies

This commit is contained in:
BlossomiShymae
2024-12-04 17:47:34 -06:00
parent 569f49d484
commit 58556283f0
5 changed files with 8 additions and 8 deletions

View File

@@ -28,7 +28,7 @@ public partial class ResponseViewModel : ObservableObject
private static ProcessInfo? GetProcessInfo()
{
if (ProcessFinder.IsActive()) return ProcessFinder.Get();
if (ProcessFinder.IsActive()) return ProcessFinder.GetProcessInfo();
return null;
}
}

View File

@@ -50,7 +50,7 @@ public partial class WebsocketViewModel : PageBase
client.ReconnectionHappened.Subscribe(OnReconnection);
client.Start();
client.Send(new EventMessage(RequestType.Subscribe, EventMessage.Kinds.OnJsonApiEvent));
client.Send(new EventMessage(EventRequestType.Subscribe, EventKinds.OnJsonApiEvent));
Client = client;
return;
}

View File

@@ -59,7 +59,7 @@ public partial class LcuRequestViewModel : ObservableObject
_ => throw new Exception("Method is not selected or missing."),
};
var processInfo = ProcessFinder.Get();
var processInfo = ProcessFinder.GetProcessInfo();
RequestText?.Invoke(this, this);
var content = new StringContent(RequestBody ?? string.Empty, new System.Net.Http.Headers.MediaTypeHeaderValue("application/json"));
var client = Connector.GetLcuHttpClientInstance();