handle errors when constructing thumbnails from file metadata
This commit is contained in:
parent
d1d75f2f25
commit
4aa8d92a53
@ -254,6 +254,12 @@ define([
|
|||||||
var cryptKey = secret.keys && secret.keys.fileKeyStr;
|
var cryptKey = secret.keys && secret.keys.fileKeyStr;
|
||||||
var key = Nacl.util.decodeBase64(cryptKey);
|
var key = Nacl.util.decodeBase64(cryptKey);
|
||||||
FileCrypto.fetchDecryptedMetadata(src, key, function (e, metadata) {
|
FileCrypto.fetchDecryptedMetadata(src, key, function (e, metadata) {
|
||||||
|
if (e) {
|
||||||
|
if (e === 'XHR_ERROR') { return; }
|
||||||
|
return console.error(e);
|
||||||
|
}
|
||||||
|
if (!metadata) { return console.error("NO_METADATA"); }
|
||||||
|
|
||||||
var v = metadata.thumbnail;
|
var v = metadata.thumbnail;
|
||||||
if (!v) {
|
if (!v) {
|
||||||
v = 'EMPTY';
|
v = 'EMPTY';
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user