aboutsummaryrefslogtreecommitdiff
path: root/src/query.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-01-18 02:50:18 +0100
committerFlorian Dold <florian.dold@gmail.com>2018-01-18 02:50:18 +0100
commit2f68e9e50e83c55ca46e9d4d72956d6525d0fa8c (patch)
treebfe94c2e0af1f3777765d37b35eeb76ed4e221be /src/query.ts
parent82d9c2a7cd2e343866997438d44aa5422190a028 (diff)
downloadwallet-core-2f68e9e50e83c55ca46e9d4d72956d6525d0fa8c.tar.xz
fix handling of resource_url
Diffstat (limited to 'src/query.ts')
-rw-r--r--src/query.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/query.ts b/src/query.ts
index 290d02a2a..e45596c66 100644
--- a/src/query.ts
+++ b/src/query.ts
@@ -685,7 +685,6 @@ export class QueryRoot {
put<T>(store: Store<T>, val: T, keyName?: string): QueryRoot {
this.checkFinished();
const doPut = (tx: IDBTransaction) => {
- console.log("put into", store.name, "value", val);
const req = tx.objectStore(store.name).put(val);
if (keyName) {
req.onsuccess = () => {