Fix mediatag...

This commit is contained in:
yflory 2018-06-11 15:06:43 +02:00
parent 054ad9e741
commit aeaf7d1950
3 changed files with 5 additions and 5 deletions

View file

@ -1065,7 +1065,9 @@ define([
childList: true,
characterData: false
});
MediaTag($tag[0]);
MediaTag($tag[0]).on('error', function (data) {
console.error(data);
});
};
var emoji_patt = /([\uD800-\uDBFF][\uDC00-\uDFFF])/;

View file

@ -211,7 +211,7 @@
if (e) { return setTimeout(function () { done(e); }); }
if (plaintext) {
if (i * cypherChunkLength < u8.length) { // not done
if ((i * cypherChunkLength + 2 + metadataLength) < u8.length) { // not done
chunks.push(plaintext);
return again();
}

View file

@ -11,9 +11,7 @@ define([
var u8 = file.blob; // This is not a blob but a uint8array
var metadata = file.metadata;
var owned = file.isOwned;
// XXX
owned = true;
var owned = file.owned;
// if it exists, path contains the new pad location in the drive
var path = file.path;