Commit 85bd425b authored by Romain Courteaud's avatar Romain Courteaud

IndexedDB: use KeyRange

parent d80342d2
......@@ -301,7 +301,7 @@
if (options.subquery) {
query = parseStringToObject(options.subquery);
key = "doc." + query.key;
value = query.value;
value = IDBKeyRange.only(query.value);
}
if (options.include_docs === true) {
return waitForAllSynchronousCursor(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment