more fixes for folders that end with \

This commit is contained in:
Stanley Dimant
2022-09-25 16:56:04 +02:00
parent 807d778b6b
commit 9142b2bee4
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ namespace MareSynchronos.FileCacheDB
public void SetResolvedFilePath(string filePath)
{
Filepath = filePath.ToLowerInvariant();
Filepath = filePath.ToLowerInvariant().Replace("\\\\", "\\");
}
public void SetHash(string hash)