Ver código fonte

Fixes because of change in vscode error message

main
Eric Amodio 4 anos atrás
pai
commit
0fa822a756
1 arquivos alterados com 5 adições e 1 exclusões
  1. +5
    -1
      src/trackers/documentTracker.ts

+ 5
- 1
src/trackers/documentTracker.ts Ver arquivo

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

Carregando…
Cancelar
Salvar