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 ed8a3dc commit 3240f51Copy full SHA for 3240f51
components/server/src/workspace/context-parser.ts
@@ -32,6 +32,9 @@ export abstract class AbstractContextParser implements IContextParser {
32
if (url.startsWith(`${this.host}/`)) {
33
url = `https://${url}`;
34
}
35
+ if (url.startsWith(`git@${this.host}:`)) {
36
+ return `https://${this.host}/` + url.slice(`git@${this.host}:`.length);
37
+ }
38
if (url.startsWith(`https://${this.host}/`)) {
39
return url;
40
0 commit comments