mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00: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
51d11d89ea
commit
61dc0b019b
@ -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