mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 22:17:22 +01:00
fix startup breaking
This commit is contained in:
parent
4ee0a670c0
commit
2e53c8e4fb
1 changed files with 8 additions and 1 deletions
|
|
@ -157,7 +157,14 @@ public sealed class IpcManager : DisposableMediatorSubscriberBase
|
||||||
|
|
||||||
Mediator.Subscribe<DelayedFrameworkUpdateMessage>(this, (_) => PeriodicApiStateCheck());
|
Mediator.Subscribe<DelayedFrameworkUpdateMessage>(this, (_) => PeriodicApiStateCheck());
|
||||||
|
|
||||||
PeriodicApiStateCheck();
|
try
|
||||||
|
{
|
||||||
|
PeriodicApiStateCheck();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
logger.LogWarning(ex, "Failed to check for some IPC, plugin not installed?");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool Initialized => CheckPenumbraApiInternal() && CheckGlamourerApiInternal();
|
public bool Initialized => CheckPenumbraApiInternal() && CheckGlamourerApiInternal();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue