Skip to content

Commit 4f9ac1f

Browse files
authored
Support creating insiders.vscode.dev permalinks (#3440)
1 parent bae156d commit 4f9ac1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/issues/issueFeatureRegistrar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1119,7 +1119,7 @@ ${body ?? ''}\n
11191119
// asExternalUri can throw when in the browser and the embedder doesn't set a uri resolver.
11201120
return link;
11211121
}
1122-
const authority = (uri.scheme === 'https' && /^(vscode|github)\./.test(uri.authority)) ? uri.authority : undefined;
1122+
const authority = (uri.scheme === 'https' && /^(insiders\.vscode|vscode|github)\./.test(uri.authority)) ? uri.authority : undefined;
11231123
if (!authority) {
11241124
return link;
11251125
}

0 commit comments

Comments
 (0)