diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-08-23 12:45:58 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-08-23 12:45:58 -0400 |
| commit | 12854950f29180f65ac44aad756379081dc1c555 (patch) | |
| tree | cb8d6d8e072e5857ed48e78c7337ddda20da1544 /Emby.Server.Implementations/IO/LibraryMonitor.cs | |
| parent | 4f7695556346e3d980bba7f7de8fe306084436e2 (diff) | |
add comment
Diffstat (limited to 'Emby.Server.Implementations/IO/LibraryMonitor.cs')
| -rw-r--r-- | Emby.Server.Implementations/IO/LibraryMonitor.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/IO/LibraryMonitor.cs b/Emby.Server.Implementations/IO/LibraryMonitor.cs index 1467d9426..3994e2b00 100644 --- a/Emby.Server.Implementations/IO/LibraryMonitor.cs +++ b/Emby.Server.Implementations/IO/LibraryMonitor.cs @@ -85,6 +85,8 @@ namespace Emby.Server.Implementations.IO public bool IsPathLocked(string path) { + // This method is not used by the core but it used by auto-organize + var lockedPaths = _tempIgnoredPaths.Keys.ToList(); return lockedPaths.Any(i => _fileSystem.AreEqual(i, path) || _fileSystem.ContainsSubPath(i, path)); } |
