diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2026-09-03 11:51:02 +0200 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2026-09-03 11:51:02 +0200 |
| commit | b724e57458e60e967bf05e943c5cf6b1a41f4044 (patch) | |
| tree | 9ec216e1c55f0a818d89440a54817e9d50506b5b /Emby.Server.Implementations | |
| parent | d73e3d964e3ce8197ec86bdaad447072305bc0d6 (diff) | |
Reduce comments
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/IO/LibraryMonitor.cs | 6 | ||||
| -rw-r--r-- | Emby.Server.Implementations/Library/LibraryManager.cs | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/Emby.Server.Implementations/IO/LibraryMonitor.cs b/Emby.Server.Implementations/IO/LibraryMonitor.cs index bc76c99451..e6a33d9dd3 100644 --- a/Emby.Server.Implementations/IO/LibraryMonitor.cs +++ b/Emby.Server.Implementations/IO/LibraryMonitor.cs @@ -368,10 +368,8 @@ namespace Emby.Server.Implementations.IO return; } - // Something changed on disk that the server did not necessarily do itself, so whatever is - // cached about that path and its folder is now a guess. This sits above the checks below - // because a change we deliberately do not refresh for still has to be read correctly the - // next time somebody looks at that folder. + // Invalidate before the checks below: a change we deliberately do not refresh for still + // has to be read correctly the next time somebody looks at that folder. _directoryService.Invalidate(path); // Ignore certain files, If the parent of an ignored path has a change event, ignore that too diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs index 92a87d9f50..0ced650587 100644 --- a/Emby.Server.Implementations/Library/LibraryManager.cs +++ b/Emby.Server.Implementations/Library/LibraryManager.cs @@ -3723,8 +3723,8 @@ namespace Emby.Server.Implementations.Library } } - // The directory caches are shared, so the validation below would otherwise resolve - // the libraries root from a listing taken before this folder was created. + // The validation below would otherwise resolve the libraries root from a listing + // taken before this folder was created. _directoryService.Invalidate(virtualFolderPath); } finally |
