Fix merge issues

pull/1/head
yflory 4 years ago
parent beb74b46d5
commit 1f98ad94cc

@ -16,7 +16,6 @@ define([
'/common/metadata-manager.js', '/common/metadata-manager.js',
'/customize/application_config.js', '/customize/application_config.js',
'/common/outer/cache-store.js',
'/common/common-realtime.js', '/common/common-realtime.js',
'/common/common-util.js', '/common/common-util.js',
'/common/common-hash.js', '/common/common-hash.js',
@ -42,7 +41,6 @@ define([
MT, MT,
MetadataMgr, MetadataMgr,
AppConfig, AppConfig,
Cache,
CommonRealtime, CommonRealtime,
Util, Util,
Hash, Hash,
@ -189,7 +187,7 @@ define([
funcs.getFileSize = function (channelId, cb) { funcs.getFileSize = function (channelId, cb) {
nThen(function (waitFor) { nThen(function (waitFor) {
Cache.getBlobCache(channelId, waitFor(function(err, blob) { ctx.cache.getBlobCache(channelId, waitFor(function(err, blob) {
if (err) { return; } if (err) { return; }
waitFor.abort(); waitFor.abort();
cb(null, blob.length); cb(null, blob.length);

Loading…
Cancel
Save