This commit is contained in:
cvium
2021-05-31 13:55:54 +02:00
parent 3b5214e595
commit 0835b26889
6 changed files with 95 additions and 65 deletions

View File

@@ -60,10 +60,7 @@ namespace MediaBrowser.Controller.Providers
}
public IReadOnlyList<string> GetFilePaths(string path)
=> GetFilePaths(path, false, false);
public IReadOnlyList<string> GetSortedFilePaths(string path, bool clearCache)
=> GetFilePaths(path, clearCache, true);
=> GetFilePaths(path, false);
public IReadOnlyList<string> GetFilePaths(string path, bool clearCache, bool sort = false)
{

View File

@@ -15,8 +15,6 @@ namespace MediaBrowser.Controller.Providers
IReadOnlyList<string> GetFilePaths(string path);
IReadOnlyList<string> GetSortedFilePaths(string path, bool clearCache);
IReadOnlyList<string> GetFilePaths(string path, bool clearCache, bool sort = false);
}
}