We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a36b7d commit cab916cCopy full SHA for cab916c
1 file changed
src/vs/workbench/api/browser/mainThreadAuthentication.ts
@@ -324,7 +324,7 @@ export class MainThreadAuthentication extends Disposable implements MainThreadAu
324
}
325
326
const remoteConnection = this.remoteAgentService.getConnection();
327
- if (remoteConnection && remoteConnection.remoteAuthority === 'vsonline' && VSO_ALLOWED_EXTENSIONS.includes(extensionId)) {
+ if (remoteConnection && remoteConnection.remoteAuthority.startsWith('vsonline') && VSO_ALLOWED_EXTENSIONS.includes(extensionId)) {
328
return true;
329
330
0 commit comments