Re-throw original exception in Linux notification's StartServiceAsync

This commit is contained in:
Ilya Fedin 2023-10-04 02:27:35 +04:00 committed by John Preston
parent ac520b314d
commit 2878533078
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ void StartServiceAsync(Fn<void()> callback) {
if (!ranges::contains(
NotSupportedErrors,
errorName)) {
throw e;
throw;
}
}
});