mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Added: Readme OpenCollective Info
This commit is contained in:
parent
e9097b8dc6
commit
28aa2eeeed
3 changed files with 35 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue