Quellcode durchsuchen

Fixes incorrect file selection when showing commit details

main
Eric Amodio vor 7 Jahren
Ursprung
Commit
474741aeb4
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      src/commands/showQuickCommitFileDetails.ts

+ 1
- 1
src/commands/showQuickCommitFileDetails.ts Datei anzeigen

@ -54,7 +54,7 @@ export class ShowQuickCommitFileDetailsCommand extends ActiveEditorCachedCommand
}
if (!fileLog) {
commit = await this.git.getLogCommit(commit ? commit.repoPath : gitUri.repoPath, commit ? commit.uri.fsPath : gitUri.fsPath, sha, { previous: true });
commit = await this.git.getLogCommit(commit ? commit.repoPath : gitUri.repoPath, gitUri.fsPath, sha, { previous: true });
if (!commit) return window.showWarningMessage(`Unable to show commit file details`);
}
}

Laden…
Abbrechen
Speichern