Merge branch 'develop' into bobbrow/ninjaPathCrash

This commit is contained in:
Bob Brown 2020-06-05 14:16:48 -07:00 коммит произвёл GitHub
Родитель b18972f5a8 99ffc8052a
Коммит ef60b673ab
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -520,7 +520,7 @@ export class ProjectOutlineProvider implements vscode.TreeDataProvider<BaseNode>
updateCodeModel(folder: vscode.WorkspaceFolder, model: codemodel_api.CodeModelContent|null, ctx: ExternalUpdateContext) {
let existing = this._folders.get(folder.uri.fsPath);
if (!existing) {
rollbar.error(localize('error.update.code.model.on.nonexist.folder', 'Updating code model on folder that does not yet exist.'));
rollbar.error(localize('error.update.code.model.on.nonexist.folder', 'Updating code model on folder that has not yet been loaded.'));
// That's an error, but we can keep going otherwise.
existing = new WorkspaceFolderNode(folder);
this._folders.set(folder.uri.fsPath, existing);