oops, touch requests are concurrent...

This commit is contained in:
Loporrit
2024-09-09 07:03:08 +00:00
parent 908c34f57b
commit 1f57510bb7
3 changed files with 32 additions and 20 deletions

View File

@@ -114,7 +114,7 @@ public sealed class CachedFileProvider : IDisposable
if (string.IsNullOrEmpty(_coldStoragePath)) return false;
var coldStorageFilePath = FilePathUtil.GetFilePath(_coldStoragePath, hash);
if (coldStorageFilePath == null) return false;
if (!File.Exists(coldStorageFilePath)) return false;
try
{