From 2f68e9e50e83c55ca46e9d4d72956d6525d0fa8c Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 18 Jan 2018 02:50:18 +0100 Subject: fix handling of resource_url --- src/query.ts | 1 - 1 file changed, 1 deletion(-) (limited to 'src/query.ts') 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(store: Store, 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 = () => { -- cgit v1.2.3