mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 18:47:15 -07:00
Quick fix for email false positive message. ISSUE: #1286
This commit is contained in:
parent
3be69cbd61
commit
3f0cc99f56
4 changed files with 33 additions and 27 deletions
|
@ -227,6 +227,7 @@ namespace Ombi.Services.Notification
|
|||
catch (Exception e)
|
||||
{
|
||||
Log.Error(e);
|
||||
throw new InvalidOperationException(e.Message);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -97,6 +97,7 @@ namespace Ombi.Services.Notification
|
|||
catch (Exception ex)
|
||||
{
|
||||
Log.Error(ex, $"Notification '{notification.NotificationName}' failed with exception");
|
||||
throw new InvalidOperationException(ex.Message);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue