From d386f82bbd5c113c950a837cee8d275ad93043ec Mon Sep 17 00:00:00 2001 From: Brett Saviano Date: Thu, 26 Jun 2025 14:49:45 -0400 Subject: [PATCH] Fix comparing of local and server versions of web app files --- src/commands/compile.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/compile.ts b/src/commands/compile.ts index 4dd7ecc8..9be22d8b 100644 --- a/src/commands/compile.ts +++ b/src/commands/compile.ts @@ -168,6 +168,7 @@ What do you want to do?`, vscode.Uri.file(file.name).with({ scheme: OBJECTSCRIPT_FILE_SCHEMA, authority: file.workspaceFolder, + query: file.name.includes("/") ? "csp" : "", }), file.uri, `Server • ${file.name} ↔ Local • ${file.fileName}`