aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authortg(x) <*@tg-x.net>2016-10-05 21:39:43 +0200
committertg(x) <*@tg-x.net>2016-10-05 21:39:43 +0200
commit1a97b04106cb8836b031bf3b12ab00d9090cf8dc (patch)
tree7776b0725c725e182d3e9fe3c658b5ad0b6ea3ab /lib
parent39b3fd7fc6a1dcf0e36d3ab8e5081c268a663fad (diff)
downloadwallet-core-1a97b04106cb8836b031bf3b12ab00d9090cf8dc.tar.xz
workaround bug in FF50
https://bugzilla.mozilla.org/show_bug.cgi?id=1101653
Diffstat (limited to 'lib')
-rw-r--r--lib/wallet/query.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wallet/query.ts b/lib/wallet/query.ts
index c7420a3f7..3119aa58f 100644
--- a/lib/wallet/query.ts
+++ b/lib/wallet/query.ts
@@ -290,7 +290,7 @@ class QueryRoot {
*/
putAll(storeName: string, iterable: any[]): QueryRoot {
const doPutAll = (tx: IDBTransaction) => {
- for (const obj of iterable) {
+ for (let obj of iterable) {
tx.objectStore(storeName).put(obj);
}
};
@@ -412,4 +412,4 @@ class QueryRoot {
this.hasWrite = true;
}
}
-} \ No newline at end of file
+}