Ignore windows with no URLs
This commit is contained in:
Родитель
016faacf86
Коммит
eaa567dd86
|
@ -86,7 +86,10 @@ const patchBrowserWindow = () => {
|
|||
|
||||
const {destroy} = BrowserWindow.prototype
|
||||
BrowserWindow.prototype.destroy = function () {
|
||||
if (this.isDestroyed()) return destroy.call(this)
|
||||
if (this.isDestroyed() || !this.getURL()) {
|
||||
return destroy.call(this)
|
||||
}
|
||||
|
||||
getCoverageFromWebContents(this.webContents, (coverage, pid) => {
|
||||
saveCoverageData(coverage, pid)
|
||||
destroy.call(this)
|
||||
|
|
Загрузка…
Ссылка в новой задаче