Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/772bd88efa137b1f32ec9c9fd9e0e396a1e6ff9e You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: OnImportFailure using OnDownloadFailure enabled notifications

pull/700/head
Qstick 6 years ago
parent c229d73ddc
commit 772bd88efa

@ -227,7 +227,6 @@ namespace NzbDrone.Core.Notifications
Language = message.Language,
SourceTitle = message.SourceTitle,
Message = message.Message
};
foreach (var notification in _notificationFactory.OnDownloadFailureEnabled())
@ -247,7 +246,7 @@ namespace NzbDrone.Core.Notifications
Message = GetAlbumIncompleteImportMessage(message.TrackedDownload.DownloadItem.Title),
};
foreach (var notification in _notificationFactory.OnDownloadFailureEnabled())
foreach (var notification in _notificationFactory.OnImportFailureEnabled())
{
if (ShouldHandleArtist(notification.Definition, message.TrackedDownload.RemoteAlbum.Artist))
{

Loading…
Cancel
Save