Address comments

This commit is contained in:
Mbucari 2023-07-03 09:58:53 -06:00
parent db2b10d2a4
commit 86124fc609
8 changed files with 30 additions and 40 deletions

View file

@ -127,10 +127,10 @@ namespace LibationFileManager
var regex = GetBookSearchRegex(productId);
//Find all extant files matching the priductID
//using both the file system and the file path cache
//Find all extant files matching the productId
//using both the file system and the file path cache
return
FilePathCache
FilePathCache
.GetFiles(productId)
.Where(c => c.fileType == FileType.Audio && File.Exists(c.path))
.Select(c => c.path)