Added: Readme OpenCollective Info

This commit is contained in:
Qstick 2018-04-07 01:06:22 -04:00
commit 28aa2eeeed
3 changed files with 35 additions and 3 deletions

View file

@ -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);

View file

@ -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);
}