mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 11:35:04 +01:00
also do this in try catch
This commit is contained in:
parent
4d23529b68
commit
07fcf7e75b
@ -35,11 +35,11 @@ class QueryTargetWrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
openKeyCursor(...params) {
|
openKeyCursor(...params) {
|
||||||
|
try {
|
||||||
// not supported on Edge 15
|
// not supported on Edge 15
|
||||||
if (!this._qt.openKeyCursor) {
|
if (!this._qt.openKeyCursor) {
|
||||||
return this.openCursor(...params);
|
return this.openCursor(...params);
|
||||||
}
|
}
|
||||||
try {
|
|
||||||
return this._qt.openKeyCursor(...params);
|
return this._qt.openKeyCursor(...params);
|
||||||
} catch(err) {
|
} catch(err) {
|
||||||
throw new IDBRequestAttemptError("openKeyCursor", this._qt, err, params);
|
throw new IDBRequestAttemptError("openKeyCursor", this._qt, err, params);
|
||||||
|
Loading…
Reference in New Issue
Block a user