Sfoglia il codice sorgente

Fixes parsing issue with merge commits

main
Eric Amodio 7 anni fa
parent
commit
758d331e69
1 ha cambiato i file con 7 aggiunte e 1 eliminazioni
  1. +7
    -1
      src/git/parsers/logParser.ts

+ 7
- 1
src/git/parsers/logParser.ts Vedi File

@ -82,7 +82,13 @@ export class GitLogParser {
case 'summary':
entry.summary = lineParts.slice(1).join(' ').trim();
while (++position < lines.length) {
if (!lines[position]) break;
const next = lines[position];
if (!next) break;
if (next === 'filename ?') {
position--;
break;
}
entry.summary += `\n${lines[position]}`;
}
break;

Caricamento…
Annulla
Salva