diff --git a/lib/browser/objects-registry.js b/lib/browser/objects-registry.js index adbf6835554c..1917c65e6558 100644 --- a/lib/browser/objects-registry.js +++ b/lib/browser/objects-registry.js @@ -27,8 +27,8 @@ class ObjectsRegistry { if (!owner) { owner = this.owners[webContentsId] = new Set() // Clear the storage when webContents is reloaded/navigated. - webContents.once('render-view-deleted', (event, id) => { - this.clear(id) + webContents.once('render-view-deleted', () => { + this.clear(webContentsId) }) } if (!owner.has(id)) {