mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Guard Against Null AlbumTitle on Import
This commit is contained in:
parent
2f74ad6540
commit
4016d359ac
1 changed files with 1 additions and 1 deletions
|
@ -699,7 +699,7 @@ namespace NzbDrone.Core.Parser
|
|||
parsedTrackInfo = Parser.ParseMusicPath(filename);
|
||||
}
|
||||
|
||||
if (parsedTrackInfo == null)
|
||||
if (parsedTrackInfo == null || parsedTrackInfo.AlbumTitle.IsNullOrWhiteSpace())
|
||||
{
|
||||
if (MediaFileExtensions.Extensions.Contains(Path.GetExtension(filename)))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue