From c6dc11d9d9c772b5d585a94d7ac7e9fcab96bbfd Mon Sep 17 00:00:00 2001 From: HelloHidnf <57768599+HelloHidnf@users.noreply.github.com> Date: Fri, 23 May 2025 18:44:51 +0100 Subject: [PATCH] Check if Vrchat path is stale (#1240) * Check if Vrchat path is stale * Check if Vrchat path is stale --- 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 66120fc8..56c0f46a 100644 --- a/Dotnet/AppApi/Electron/Folders.cs +++ b/Dotnet/AppApi/Electron/Folders.cs @@ -71,7 +71,7 @@ namespace VRCX libraryPath = parts[4].Replace("\"", ""); } - if (line.Contains($"\"{appId}\"")) + if (line.Contains($"\"{appId}\"") && Directory.Exists(libraryPath)) return libraryPath; }