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 3cd6f48 commit eec2fc7Copy full SHA for eec2fc7
extensions/github-authentication/src/flows.ts
@@ -200,7 +200,9 @@ const allFlows: IFlow[] = [
200
// other flows that work well.
201
supportsGitHubEnterpriseServer: false,
202
supportsHostedGitHubEnterprise: true,
203
- supportsRemoteExtensionHost: true,
+ // Opening a port on the remote side can't be open in the browser on
204
+ // the client side so this flow won't work in remote extension hosts
205
+ supportsRemoteExtensionHost: false,
206
// Web worker can't open a port to listen for the redirect
207
supportsWebWorkerExtensionHost: false,
208
// exchanging a code for a token requires a client secret
0 commit comments