fixes and ensure that users no longer have to hard refresh their sites.

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-03-16 10:01:48 -06:00
parent 9635c3c2c5
commit 3c7d575c85
9 changed files with 22 additions and 22 deletions

View File

@@ -156,7 +156,7 @@ namespace CarCareTracker.Helper
}
}
//copy each files from temp folder to newPath
var filesToUpload = Directory.GetFiles(documentPath);
var filesToUpload = Directory.GetFiles(translationPath);
foreach (string file in filesToUpload)
{
File.Copy(file, $"{existingPath}/{Path.GetFileName(file)}", true);