浏览代码

add comment

Luke Pulverenti 7 年之前
父节点
当前提交
12854950f2
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      Emby.Server.Implementations/IO/LibraryMonitor.cs

+ 2 - 0
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));
         }