don't throw on ipc

This commit is contained in:
rootdarkarchon
2024-03-30 17:12:56 +01:00
committed by Loporrit
parent c29f63da9a
commit 18e455263e

View File

@@ -95,6 +95,10 @@ public class IpcProvider : IHostedService, IMediatorSubscriber
var expectedLength = _mareCharaFileManager.LoadMareCharaFile(path);
await _mareCharaFileManager.ApplyMareCharaFile(target, expectedLength).ConfigureAwait(false);
}
catch (Exception e)
{
_logger.LogError(e, "Failure of IPC call");
}
finally
{
_mareCharaFileManager.ClearMareCharaFile();