Skip to content

Commit

Permalink
Merge pull request #199 from alexr00/alexr00/uriFile
Browse files Browse the repository at this point in the history
Uri.parse -> Uri.file fixes #198
  • Loading branch information
incidentist authored Apr 14, 2023
2 parents 33a5200 + 143bdd3 commit 1675c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ export class Repository implements IDisposable, QuickDiffProvider {
this._sourceControl = scm.createSourceControl(
"hg",
"Hg",
Uri.parse(repository.root)
Uri.file(repository.root)
);
this.disposables.push(this._sourceControl);

Expand Down

0 comments on commit 1675c93

Please sign in to comment.