Przeglądaj źródła

Fix code logic issues

main
nooooooom 1 rok temu
committed by Eric Amodio
rodzic
commit
840a5f8fb4
1 zmienionych plików z 2 dodań i 2 usunięć
  1. +2
    -2
      src/git/parsers/diffParser.ts

+ 2
- 2
src/git/parsers/diffParser.ts Wyświetl plik

@ -23,8 +23,8 @@ export function parseGitFileDiff(data: string, includeContents = false): GitDiff
// Skip header
let i = -1;
while (i < lines.length) {
if (lines[++i].startsWith('@@')) {
while (++i < lines.length) {
if (lines[i].startsWith('@@')) {
break;
}
}

Ładowanie…
Anuluj
Zapisz