소스 검색

add comment

Luke Pulverenti 8 년 전
부모
커밋
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));
         }