Fix type error in driveless mode

pull/1/head
yflory 2021-04-08 18:04:37 +02:00
parent 79a238a65a
commit cdbb41eb04
1 changed files with 1 additions and 0 deletions

View File

@ -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) {