Commit c948c24e authored by Romain Courteaud's avatar Romain Courteaud

[indexeddb] Blob.length does not exist

Use Blob.size instead...
parent 868af9b5
...@@ -489,7 +489,7 @@ ...@@ -489,7 +489,7 @@
{type: "application/octet-stream"}); {type: "application/octet-stream"});
index = Math.floor(start / UNITE) * UNITE; index = Math.floor(start / UNITE) * UNITE;
if (end === undefined) { if (end === undefined) {
end = blob.length; end = blob.size;
} else { } else {
end = end - index; end = end - index;
} }
...@@ -560,7 +560,7 @@ ...@@ -560,7 +560,7 @@
blob = new Blob(array_buffer_list, blob = new Blob(array_buffer_list,
{type: attachment.info.content_type}); {type: attachment.info.content_type});
if (blob.length !== attachment.info.total_length) { if (blob.size !== attachment.info.length) {
throw new jIO.util.jIOError( throw new jIO.util.jIOError(
"IndexedDB: attachment '" + "IndexedDB: attachment '" +
buildKeyPath([id, name]) + buildKeyPath([id, name]) +
......
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