- FIX: File browser "This PC" section empy

- FIX: File browser "Path incorrect" error on multiple folders selected
- FIX: File browser allowed addition of incorrect file share paths (will now throw an error when the path does not exist)
- Changed: Some changes to the UI for the file browser (no more dropdown select for "This PC". Instead a "localhost" entry is now added to the tree selection
This commit is contained in:
2026-05-28 12:41:05 +02:00
parent 2fd4860dc2
commit 3225a4fd8e
4 changed files with 82 additions and 90 deletions

View File

@@ -453,9 +453,11 @@ namespace Permissions
foreach (string f in folderList)
{
updateDebugInfo("Checking if directory exists: " + f);
if (!Directory.Exists(f))
{
dirExists = false;
updateDebugInfo(" dirExists: " + dirExists);
}
}