mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1216002 - "JavaScript error: resource://gre/modules/RequestSyncService.jsm, line 228: TypeError: 'continue' called on an object that does not implement interface IDBCursor." r=bz
This commit is contained in:
parent
78f64415c6
commit
332da38461
@ -101,7 +101,9 @@ this.RequestSyncService = {
|
||||
aStore.openCursor().onsuccess = event => {
|
||||
let cursor = event.target.result;
|
||||
if (cursor) {
|
||||
this.addRegistration(cursor.value, cursor.continue);
|
||||
this.addRegistration(cursor.value, function() {
|
||||
cursor.continue();
|
||||
});
|
||||
}
|
||||
}
|
||||
}.bind(this),
|
||||
|
Loading…
Reference in New Issue
Block a user