Procházet zdrojové kódy

Fix code logic issues

main
nooooooom před 1 rokem
odevzdal Eric Amodio
rodič
revize
840a5f8fb4
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      src/git/parsers/diffParser.ts

+ 2
- 2
src/git/parsers/diffParser.ts Zobrazit soubor

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

Načítá se…
Zrušit
Uložit