소스 검색

Fixes because of change in vscode error message

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

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

@ -260,7 +260,11 @@ export class DocumentTracker implements Disposable {
const msg = ex.toString();
if (msg.includes('File seems to be binary and cannot be opened as text')) {
document = new BinaryTextDocument(documentOrId);
} else if (msg.includes('File not found')) {
} else if (
msg.includes('File not found') ||
msg.includes('Unable to read file') ||
msg.includes('Unable to resolve non-existing file')
) {
// If we can't find the file, assume it is because the file has been renamed or deleted at some point
document = new MissingRevisionTextDocument(documentOrId);

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