Explorar el Código

Fix code logic issues

main
nooooooom hace 1 año
cometido por Eric Amodio
padre
commit
840a5f8fb4
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      src/git/parsers/diffParser.ts

+ 2
- 2
src/git/parsers/diffParser.ts Ver fichero

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

Cargando…
Cancelar
Guardar