Explorar el Código

Fixes issue where the wrong diff line could be shown

main
Eric Amodio hace 7 años
padre
commit
6a9977b954
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/gitService.ts

+ 1
- 1
src/gitService.ts Ver fichero

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

Cargando…
Cancelar
Guardar