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

Fix Bug with TrackDownloaded Notifications

pull/94/head
Qstick 8 years ago
parent 4ccb625f18
commit cbcccf0d9d

@ -56,7 +56,7 @@ namespace NzbDrone.Core.Notifications
var trackTitles = string.Join(" + ", tracks.Select(e => e.Title));
return string.Format("{0} - {1} - [{4}]",
return string.Format("{0} - {1} - [{2}]",
artist.Name,
trackTitles,
qualityString);
@ -72,7 +72,7 @@ namespace NzbDrone.Core.Notifications
if (definition.Tags.Intersect(artist.Tags).Any())
{
_logger.Debug("Notification and series have one or more intersecting tags.");
_logger.Debug("Notification and artist have one or more intersecting tags.");
return true;
}

Loading…
Cancel
Save