fix(scanner): improve M3U playlist import times (#2706)

This commit is contained in:
Deluan 2024-09-18 19:18:07 -04:00
parent ee2e04b832
commit 46be041e7b
9 changed files with 167 additions and 51 deletions

View file

@ -265,6 +265,7 @@ type MediaFileRepository interface {
// Queries by path to support the scanner, no Annotations or Bookmarks required in the response
FindAllByPath(path string) (MediaFiles, error)
FindByPath(path string) (*MediaFile, error)
FindByPaths(paths []string) (MediaFiles, error)
FindPathsRecursively(basePath string) ([]string, error)
DeleteByPath(path string) (int64, error)