mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-07 08:18:54 +01:00
sync updates
This commit is contained in:
@@ -174,7 +174,7 @@ namespace MediaBrowser.Controller.Entities.Movies
|
||||
// Need to check Count > 0 for boxsets created prior to the introduction of Shares
|
||||
if (Shares.Count > 0 && !Shares.Any(i => string.Equals(userId, i.UserId, StringComparison.OrdinalIgnoreCase)))
|
||||
{
|
||||
return false;
|
||||
//return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
|
||||
@@ -46,6 +46,11 @@ namespace MediaBrowser.Controller.Providers
|
||||
|
||||
private Dictionary<string, FileSystemInfo> GetFileSystemDictionary(string path, bool clearCache)
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(path))
|
||||
{
|
||||
throw new ArgumentNullException("path");
|
||||
}
|
||||
|
||||
Dictionary<string, FileSystemInfo> entries;
|
||||
|
||||
if (clearCache)
|
||||
|
||||
Reference in New Issue
Block a user