mirror of
https://github.com/Lidarr/Lidarr
synced 2026-03-01 18:16:31 +01:00
Map queue item to artist and album by parsing the title
This commit is contained in:
parent
8df5a5011b
commit
cba51fd60a
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ private void UpdateCachedItem(TrackedDownload trackedDownload)
|
|||
{
|
||||
var parsedAlbumInfo = Parser.Parser.ParseAlbumTitle(trackedDownload.DownloadItem.Title);
|
||||
|
||||
trackedDownload.RemoteAlbum = parsedAlbumInfo == null ? null : _parsingService.Map(parsedAlbumInfo, 0, new List<int> { });
|
||||
trackedDownload.RemoteAlbum = parsedAlbumInfo == null ? null : _parsingService.Map(parsedAlbumInfo);
|
||||
}
|
||||
|
||||
public void StopTracking(string downloadId)
|
||||
|
|
|
|||
Loading…
Reference in a new issue