e is an error and not a string, stops stack traces in the server log

pull/1/head
Caleb James DeLisle 7 years ago
parent beaf391122
commit bd6cb98c1e

@ -310,7 +310,7 @@ var getFileSize = function (Env, channel, cb) {
return void Env.msgStore.getChannelSize(channel, function (e, size /*:number*/) { return void Env.msgStore.getChannelSize(channel, function (e, size /*:number*/) {
if (e) { if (e) {
if (e === 'ENOENT') { return void cb(void 0, 0); } if (e.code === 'ENOENT') { return void cb(void 0, 0); }
return void cb(e.code); return void cb(e.code);
} }
cb(void 0, size); cb(void 0, size);

Loading…
Cancel
Save