fix merge + add catch
Some checks failed
Tag and Release Lightless / tag-and-release (push) Failing after 38s

This commit is contained in:
2025-10-06 08:31:23 +09:00
parent 4f50028517
commit a2bb1d7336
2 changed files with 44 additions and 56 deletions

View File

@@ -741,6 +741,11 @@ public sealed class PairHandler : DisposableMediatorSubscriberBase
}
}
}
catch (OperationCanceledException)
{
Logger.LogTrace("[BASE-{appBase}] Modded path calculation cancelled", applicationBase);
throw;
}
catch (Exception ex)
{
Logger.LogError(ex, "[BASE-{appBase}] Something went wrong during calculation replacements", applicationBase);
@@ -767,4 +772,4 @@ public sealed class PairHandler : DisposableMediatorSubscriberBase
_dataReceivedInDowntime = null;
}
}
}
}