We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea819cd commit 689519fCopy full SHA for 689519f
src/view/prsTreeDataProvider.ts
@@ -107,7 +107,10 @@ export class PullRequestsTreeDataProvider implements vscode.TreeDataProvider<Tre
107
}
108
109
const callbackUri = await vscode.env.asExternalUri(vscode.Uri.parse(`${vscode.env.uriScheme}://vscode.github-authentication`));
110
- const isVSO = callbackUri.authority.endsWith('workspaces.github.com');
+ const isVSO = callbackUri.authority.endsWith('workspaces.github.com')
111
+ || callbackUri.authority.endsWith('workspaces-dev.github.com')
112
+ || callbackUri.authority.endsWith('workspaces-ppe.github.com');
113
+
114
this._isVSO = isVSO;
115
return isVSO;
116
0 commit comments