mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Fixed Prowl ExternalNotifcation.
This commit is contained in:
parent
bbd5cba272
commit
1cf17cfc11
3 changed files with 3 additions and 9 deletions
|
@ -10,8 +10,6 @@ namespace NzbDrone.Core.Providers.ExternalNotification
|
|||
{
|
||||
private readonly ProwlProvider _prowlProvider;
|
||||
|
||||
private readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
||||
|
||||
public Prowl(ConfigProvider configProvider, ProwlProvider prowlProvider)
|
||||
: base(configProvider)
|
||||
{
|
||||
|
@ -41,8 +39,7 @@ namespace NzbDrone.Core.Providers.ExternalNotification
|
|||
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.WarnException(ex.Message, ex);
|
||||
throw;
|
||||
_logger.WarnException(ex.Message, ex);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -64,8 +61,7 @@ namespace NzbDrone.Core.Providers.ExternalNotification
|
|||
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.WarnException(ex.Message, ex);
|
||||
throw;
|
||||
_logger.WarnException(ex.Message, ex);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue