Parcourir la source

Fix code logic issues

main
nooooooom il y a 1 an
committed by Eric Amodio
Parent
révision
840a5f8fb4
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +2
    -2
      src/git/parsers/diffParser.ts

+ 2
- 2
src/git/parsers/diffParser.ts Voir le fichier

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

Chargement…
Annuler
Enregistrer