Sfoglia il codice sorgente

Fix code logic issues

main
nooooooom 1 anno fa
committed by Eric Amodio
parent
commit
840a5f8fb4
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +2
    -2
      src/git/parsers/diffParser.ts

+ 2
- 2
src/git/parsers/diffParser.ts Vedi File

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

Caricamento…
Annulla
Salva