Browse Source

Fixes because of change in vscode error message

main
Eric Amodio 4 years ago
parent
commit
0fa822a756
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      src/trackers/documentTracker.ts

+ 5
- 1
src/trackers/documentTracker.ts View File

@ -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);

Loading…
Cancel
Save