From 5812b37c172fc608e3f221512ae04af02c109666 Mon Sep 17 00:00:00 2001 From: HelloHidnf <57768599+HelloHidnf@users.noreply.github.com> Date: Mon, 26 May 2025 09:52:10 +0100 Subject: [PATCH] Far less jank fix to previous pr (#1246) * Check if Vrchat path is stale * Check if Vrchat path is stale * Fixed `Open Folder` opening file * Fixed Open Folder opening file * Fix `Open Folder` opening file --- Dotnet/AppApi/Electron/Folders.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dotnet/AppApi/Electron/Folders.cs b/Dotnet/AppApi/Electron/Folders.cs index 65f652e3..6d62b420 100644 --- a/Dotnet/AppApi/Electron/Folders.cs +++ b/Dotnet/AppApi/Electron/Folders.cs @@ -230,7 +230,7 @@ namespace VRCX public override void OpenFolderAndSelectItem(string path, bool isFolder = false) { - path = Path.GetFullPath(path); + path = Path.GetDirectoryName(path); if (!File.Exists(path) && !Directory.Exists(path)) return;