sync updates

This commit is contained in:
Luke Pulverenti
2014-12-28 12:59:40 -05:00
parent 5278959ede
commit 726cf9697a
56 changed files with 184 additions and 134 deletions

View File

@@ -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;

View File

@@ -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)