The deadlock situation is craaaaazy
Fix
This commit is contained in:
committed by
Maplewheels
parent
dda26df250
commit
f1e1b9238d
@@ -25,8 +25,8 @@ public class SafeStorageService : StorageService, ISafeStorageService
|
||||
|
||||
public SafeStorageService(IStorageServiceConfig configData) : base(configData)
|
||||
{
|
||||
IsReadOperationAllowedEval = async Task<bool> (fp) => IsFileAccessible(fp, true, true);
|
||||
IsWriteOperationAllowedEval = async Task<bool> (fp) => IsFileAccessible(fp, false, true);
|
||||
IsReadOperationAllowedEval = (fp) => IsFileAccessible(fp, true, true);
|
||||
IsWriteOperationAllowedEval = (fp) => IsFileAccessible(fp, false, true);
|
||||
}
|
||||
|
||||
private string GetFullPath(string path) => System.IO.Path.GetFullPath(path).CleanUpPathCrossPlatform();
|
||||
|
||||
Reference in New Issue
Block a user