Quellcode durchsuchen

Fixes diffWith when called with no previous sha

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

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

@ -48,7 +48,7 @@ export class DiffWithCommand extends ActiveEditorCommand {
args = {
repoPath: commit1.repoPath,
lhs: {
sha: commit1.previousSha!,
sha: commit1.previousSha !== undefined ? commit1.previousSha : GitService.fakeSha,
uri: commit1.previousUri!
},
rhs: {

Laden…
Abbrechen
Speichern