소스 검색

Adds protection

main
Eric Amodio 1 년 전
부모
커밋
e6aa7c2d6a
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      src/trackers/documentTracker.ts

+ 3
- 1
src/trackers/documentTracker.ts 파일 보기

@ -394,7 +394,9 @@ export class DocumentTracker implements Disposable {
if (this._documentMap.size === 0) return;
for await (const doc of this._documentMap.values()) {
const repoPath = doc.uri.repoPath!.toLocaleLowerCase();
const repoPath = doc.uri.repoPath?.toLocaleLowerCase();
if (repoPath == null) continue;
if (changed?.removedRepoPaths?.has(repoPath)) {
void this.remove(doc.document, doc);
} else if (changed == null || changed?.addedOrChangedRepoPaths?.has(repoPath)) {

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