Selaa lähdekoodia

Fix code logic issues

main
nooooooom 1 vuosi sitten
committed by Eric Amodio
vanhempi
commit
840a5f8fb4
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. +2
    -2
      src/git/parsers/diffParser.ts

+ 2
- 2
src/git/parsers/diffParser.ts Näytä tiedosto

@ -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;
}
}

Ladataan…
Peruuta
Tallenna