Fix document ID in drive history mode

This commit is contained in:
yflory 2022-03-17 10:54:22 +01:00
parent 8f086e00fe
commit 362801a15d

View file

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