소스 검색

Fixes dupes when searching for commits & stashes

main
Eric Amodio 1 년 전
부모
커밋
d6984dd19e
2개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -0
      CHANGELOG.md
  2. +2
    -2
      src/git/parsers/logParser.ts

+ 1
- 0
CHANGELOG.md 파일 보기

@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
- Fixes an issue where the links in the _Search & Compare_ view failed to open the specific search type
- Fixes an issue when searching for commits and the results contain stashes
## [14.0.0] - 2023-06-14

+ 2
- 2
src/git/parsers/logParser.ts 파일 보기

@ -809,6 +809,7 @@ export class GitLogParser {
stash.stashName,
stash.stashOnRef,
);
commits.set(stash.sha, commit);
} else {
commit = new GitCommit(
container,
@ -834,9 +835,8 @@ export class GitLogParser {
entry.line != null ? [entry.line] : [],
entry.tips,
);
commits.set(entry.sha!, commit);
}
commits.set(entry.sha!, commit);
}
}

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