Only search in video folder for external audio files

Don't search in video metadata folder since audio files won't be stored there

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
This commit is contained in:
Jonas Resch 2021-11-27 16:52:03 +01:00 committed by Jonas Resch
parent a3c5afa443
commit 9433072f90

View file

@ -59,7 +59,6 @@ namespace MediaBrowser.Providers.MediaInfo
}
paths.AddRange(GetAudioFilesFromFolder(video.ContainingFolderPath, video.Path, directoryService, namingOptions, clearCache));
paths.AddRange(GetAudioFilesFromFolder(video.GetInternalMetadataPath(), video.Path, directoryService, namingOptions, clearCache));
return paths;
}