From 91dae6ec8f6fa06023bc98222d43705b2f13e9a9 Mon Sep 17 00:00:00 2001 From: Brett Saviano Date: Wed, 9 Apr 2025 17:22:25 -0400 Subject: [PATCH] Fix generating of URL when debugging REST services --- src/commands/restDebugPanel.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/commands/restDebugPanel.ts b/src/commands/restDebugPanel.ts index bf2b6878..264e25d6 100644 --- a/src/commands/restDebugPanel.ts +++ b/src/commands/restDebugPanel.ts @@ -20,8 +20,6 @@ interface WebviewMessage { bodyType: string; /** Request body */ bodyContent: string; - /** Selected web application */ - webApp: string; } /** @@ -358,7 +356,7 @@ export class RESTDebugPanel { axios .request({ method: message.method, - url: `${encodeURI(`${serverInfo}${message.webApp}${path}`)}?${urlParams.toString()}`, + url: `${encodeURI(`${serverInfo}${path}`)}?${urlParams.toString()}`, headers, data: hasBody ? message.bodyContent : undefined, withCredentials: true,