diff --git a/www/common/outer/async-store.js b/www/common/outer/async-store.js index 8ca1e741c..9069cc70a 100644 --- a/www/common/outer/async-store.js +++ b/www/common/outer/async-store.js @@ -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) {