Procházet zdrojové kódy

Fixes issue where the wrong diff line could be shown

main
Eric Amodio před 7 roky
rodič
revize
6a9977b954
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/gitService.ts

+ 1
- 1
src/gitService.ts Zobrazit soubor

@ -671,7 +671,7 @@ export class GitService extends Disposable {
return [
chunk.previous[line + deleted - 1],
chunk.current[line + deleted]
chunk.current[line + deleted + (chunk.currentStart - chunk.previousStart)]
];
}
catch (ex) {

Načítá se…
Zrušit
Uložit