Make sure we don't try to get metadata for blobs

This commit is contained in:
yflory
2020-04-07 11:03:35 +02:00
parent 9de345044a
commit 4672bf794b
4 changed files with 12 additions and 1 deletions

View File

@@ -59,8 +59,8 @@ define([
}), opts.href);
// If this is a file, don't try to look for metadata
if (opts.channel && opts.channel.length > 34) { return; }
if (opts.channel) { data.channel = opts.channel; }
if (!data.channel || data.channel.length > 32) { return; }
Modal.loadMetadata(Env, data, waitFor);
}).nThen(function () {
cb(void 0, data);