mirror of
https://github.com/Readarr/Readarr
synced 2026-01-01 13:13:23 +01:00
Fix Bug with TrackDownloaded Notifications
This commit is contained in:
parent
4ccb625f18
commit
cbcccf0d9d
1 changed files with 2 additions and 2 deletions
|
|
@ -56,7 +56,7 @@ private string GetTrackMessage(Artist artist, List<Track> tracks, QualityModel q
|
|||
|
||||
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 @@ private bool ShouldHandleArtist(ProviderDefinition definition, Artist artist)
|
|||
|
||||
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…
Reference in a new issue