mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-07 17:25:00 +00:00
Added: Readme OpenCollective Info
This commit is contained in:
@@ -634,8 +634,6 @@ namespace NzbDrone.Core.Parser
|
||||
ArtistTitleInfo = artistTitleInfo,
|
||||
Title = trackTitle
|
||||
};
|
||||
|
||||
|
||||
|
||||
Logger.Trace("File Tags Parsed: Artist: {0}, Album: {1}, Disc: {2}, Track Numbers(s): {3}, TrackTitle: {4}", result.ArtistTitle, result.AlbumTitle, result.DiscNumber, trackNumber, result.Title);
|
||||
|
||||
|
||||
@@ -267,7 +267,12 @@ namespace NzbDrone.Core.Parser
|
||||
{
|
||||
Album album = null;
|
||||
|
||||
if (parsedTrackInfo != null && parsedTrackInfo.ReleaseMBId.IsNotNullOrWhiteSpace())
|
||||
if (parsedTrackInfo == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
if (parsedTrackInfo.ReleaseMBId.IsNotNullOrWhiteSpace())
|
||||
{
|
||||
album = _albumService.FindAlbumByRelease(parsedTrackInfo.ReleaseMBId);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user