From 5f2724bdd18c2758ad6518023adb233bce2feb30 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 8 Jul 2024 14:16:24 +0200 Subject: [PATCH] up --- src/extension.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/extension.ts b/src/extension.ts index 4cfe135..e3ad9e0 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -42,7 +42,7 @@ export function activate(context: vscode.ExtensionContext) { console.log('Opened file:', filePath); // vscode.window.showInformationMessage(`Opened file: ${filePath}`); - await makeHttpRequest({ event: 'open', project: extractProjectName(filePath), filePath }); + await makeHttpRequest({ event: 'open', project: extractProjectName(filePath) }); } }); @@ -52,7 +52,7 @@ export function activate(context: vscode.ExtensionContext) { console.log('Saved file:', filePath); // vscode.window.showInformationMessage(`Saved file: ${filePath}`); - await makeHttpRequest({ event: 'save', project: extractProjectName(filePath), filePath }); + await makeHttpRequest({ event: 'save', project: extractProjectName(filePath) }); }); // detecte un focus / blur de la fenetre vscode