Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 795e96a

Browse files
authored
Merge pull request #199 from cschleiden/lauraway/fetch-correct-repository-name
2 parents a1fd4aa + 13be922 commit 795e96a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/logs/scheme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function parseUri(uri: vscode.Uri): {
2727

2828
return {
2929
owner: uri.authority,
30-
repo: uri.path.split("/").slice(0, -1).join(""),
30+
repo: uri.path.split("/").slice(0, 2).join(""),
3131
jobId: parseInt(uri.query, 10),
3232
stepName: uri.fragment,
3333
};

0 commit comments

Comments
 (0)