Fix type error in driveless mode

pull/1/head
yflory 4 years ago
parent 79a238a65a
commit cdbb41eb04

@ -104,6 +104,7 @@ define([
Store.get = function (clientId, data, cb) {
var s = getStore(data.teamId);
if (!s) { return void cb({ error: 'ENOTFOUND' }); }
if (!s.proxy) { return void cb({ error: 'ENODRIVE' }); }
cb(Util.find(s.proxy, data.key));
};
Store.set = function (clientId, data, cb) {

Loading…
Cancel
Save