We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af2126c commit 361cf8eCopy full SHA for 361cf8e
1 file changed
src/vs/platform/remote/common/tunnel.ts
@@ -27,7 +27,7 @@ export function extractLocalHostUriMetaDataForPortMapping(uri: URI): { address:
27
if (uri.scheme !== 'http' && uri.scheme !== 'https') {
28
return undefined;
29
}
30
- const localhostMatch = /^(localhost|127\.0\.0\.1):(\d+)$/.exec(uri.authority);
+ const localhostMatch = /^(localhost|127\.0\.0\.1|0\.0\.0\.0):(\d+)$/.exec(uri.authority);
31
if (!localhostMatch) {
32
33
0 commit comments