Skip to content

Commit

Permalink
fix: Fixed windows network drive issues (#497)
Browse files Browse the repository at this point in the history
fixes #466 #451 #494
  • Loading branch information
JohnstonCode committed Mar 15, 2019
1 parent 10ea32b commit 6a6c846
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/historyView/itemLogProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export class ItemLogProvider
const repo = this.model.getRepository(uri);
if (repo !== undefined) {
try {
const info = await repo.getInfo(uri.path);
const info = await repo.getInfo(uri.fsPath);
this.currentItem = {
isComplete: false,
entries: [],
Expand Down

0 comments on commit 6a6c846

Please sign in to comment.