Ver a proveniência

Fix code logic issues

main
nooooooom há 1 ano
committed by Eric Amodio
ascendente
cometimento
840a5f8fb4
1 ficheiros alterados com 2 adições e 2 eliminações
  1. +2
    -2
      src/git/parsers/diffParser.ts

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

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

Carregando…
Cancelar
Guardar