зеркало из https://github.com/electron/electron.git
refactor: handle uncaught promise error (#35484)
This commit is contained in:
Родитель
ff3289d260
Коммит
ff4816367e
|
@ -186,7 +186,10 @@ export class SrcAttribute extends WebViewAttribute {
|
|||
opts.userAgent = useragent;
|
||||
}
|
||||
|
||||
(this.webViewImpl.webviewNode as Electron.WebviewTag).loadURL(this.getValue(), opts);
|
||||
(this.webViewImpl.webviewNode as Electron.WebviewTag).loadURL(this.getValue(), opts)
|
||||
.catch(err => {
|
||||
console.error('Unexpected error while loading URL', err);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче