Bläddra i källkod

Fixes issue where the wrong diff line could be shown

main
Eric Amodio 7 år sedan
förälder
incheckning
6a9977b954
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      src/gitService.ts

+ 1
- 1
src/gitService.ts Visa fil

@ -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) {

Laddar…
Avbryt
Spara