File tree Expand file tree Collapse file tree
src/vs/workbench/services/url/browser Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ class SelfhostURLCallbackProvider extends Disposable implements IURLCallbackProv
124124 // Start to poll on the callback being fired
125125 this . periodicFetchCallback ( requestId , Date . now ( ) ) ;
126126
127- return this . doCreateUri ( 'callback' , queryValues ) ;
127+ return this . doCreateUri ( '/ callback' , queryValues ) ;
128128 }
129129
130130 private async periodicFetchCallback ( requestId : string , startTime : number ) : Promise < void > {
@@ -134,7 +134,7 @@ class SelfhostURLCallbackProvider extends Disposable implements IURLCallbackProv
134134 queryValues . set ( SelfhostURLCallbackProvider . QUERY_KEYS . REQUEST_ID , requestId ) ;
135135
136136 const result = await this . requestService . request ( {
137- url : this . doCreateUri ( 'fetch-callback' , queryValues ) . toString ( true )
137+ url : this . doCreateUri ( '/ fetch-callback' , queryValues ) . toString ( true )
138138 } , CancellationToken . None ) ;
139139
140140 // Check for callback results
You can’t perform that action at this time.
0 commit comments