Catch request cancelled error
This commit is contained in:
Родитель
ad8dc1e906
Коммит
eb59ead817
|
@ -466,6 +466,13 @@ export class ModelEditorView extends AbstractWebview<
|
|||
|
||||
this.modelingStore.setMethods(this.databaseItem, queryResult);
|
||||
} catch (err) {
|
||||
if (
|
||||
getErrorMessage(err).match(/The request \(.*\) has been cancelled/i)
|
||||
) {
|
||||
this.panel?.dispose();
|
||||
return;
|
||||
}
|
||||
|
||||
void showAndLogExceptionWithTelemetry(
|
||||
this.app.logger,
|
||||
this.app.telemetry,
|
||||
|
|
Загрузка…
Ссылка в новой задаче