Fixed: Better detection of existing files

This commit is contained in:
ta264
2021-05-12 21:26:53 +01:00
parent 774180262b
commit 3767c830d5

View File

@@ -315,9 +315,11 @@ namespace NzbDrone.Core.MediaFiles.BookImport.Manual
var fileTrackInfo = _audioTagService.ReadTags(file.Path) ?? new ParsedTrackInfo();
var fileInfo = _diskProvider.GetFileInfo(file.Path);
var fileRootFolder = _rootFolderService.GetBestRootFolder(file.Path);
var localTrack = new LocalBook
{
ExistingFile = author.Path.IsParentPath(file.Path),
ExistingFile = fileRootFolder != null,
FileTrackInfo = fileTrackInfo,
Path = file.Path,
Size = fileInfo.Length,