mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
Fixed: Manual import of unknown aritst items in Activity: Queue
This commit is contained in:
parent
d7e465d2d7
commit
12cc2ef95a
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ namespace NzbDrone.Core.MediaFiles.TrackImport.Manual
|
|||
if (artist == null && downloadId.IsNotNullOrWhiteSpace())
|
||||
{
|
||||
var trackedDownload = _trackedDownloadService.Find(downloadId);
|
||||
artist = trackedDownload.RemoteAlbum.Artist;
|
||||
artist = trackedDownload.RemoteAlbum?.Artist;
|
||||
}
|
||||
|
||||
var folderInfo = Parser.Parser.ParseMusicTitle(directoryInfo.Name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue