소스 검색

Fixes typo in stash parsing

main
Eric Amodio 7 년 전
부모
커밋
27425e3deb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/git/parsers/stashParser.ts

+ 1
- 1
src/git/parsers/stashParser.ts 파일 보기

@ -119,7 +119,7 @@ export class GitStashParser {
const entry = entries[i];
let commit = commits.get(entry.sha);
if (commit !== undefined) {
if (commit === undefined) {
commit = new GitStashCommit(entry.stashName, repoPath, entry.sha, entry.fileNames, moment(entry.date).toDate(), entry.summary, undefined, entry.fileStatuses) as GitStashCommit;
commits.set(entry.sha, commit);
}

불러오는 중...
취소
저장