Переглянути джерело

Fixes issue where the wrong diff line could be shown

main
Eric Amodio 7 роки тому
джерело
коміт
6a9977b954
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      src/gitService.ts

+ 1
- 1
src/gitService.ts Переглянути файл

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

Завантаження…
Відмінити
Зберегти