remove glamourer testing warning stuff

This commit is contained in:
rootdarkarchon
2023-07-23 15:34:57 +02:00
parent b3ba64fbae
commit 240bcc2323

View File

@@ -612,21 +612,12 @@ public sealed class IpcManager : DisposableMediatorSubscriberBase
{
apiAvailable = true;
}
_shownGlamourerUnavailable = _shownGlamourerUnavailable && !apiAvailable;
return apiAvailable;
}
catch
{
return apiAvailable;
}
finally
{
if (!apiAvailable && !_shownGlamourerUnavailable)
{
_shownGlamourerUnavailable = true;
Mediator.Publish(new NotificationMessage("Glamourer inactive", "Your Glamourer installation is not active or out of date. Update Glamourer to continue to use Mare.", NotificationType.Error));
}
}
}
private bool CheckHeelsApiInternal()