Skip to content

Commit 361cf8e

Browse files
committed
1 parent af2126c commit 361cf8e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/platform/remote/common/tunnel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function extractLocalHostUriMetaDataForPortMapping(uri: URI): { address:
2727
if (uri.scheme !== 'http' && uri.scheme !== 'https') {
2828
return undefined;
2929
}
30-
const localhostMatch = /^(localhost|127\.0\.0\.1):(\d+)$/.exec(uri.authority);
30+
const localhostMatch = /^(localhost|127\.0\.0\.1|0\.0\.0\.0):(\d+)$/.exec(uri.authority);
3131
if (!localhostMatch) {
3232
return undefined;
3333
}

0 commit comments

Comments
 (0)