guard against a possible typeError in the worker

pull/1/head
ansuz 2020-10-20 16:31:34 +05:30
parent ab9c7454f5
commit b4adf65dc8
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ define([
Store.getPinnedUsage = function (clientId, data, cb) {
var s = getStore(data && data.teamId);
if (!s.rpc) { return void cb({error: 'RPC_NOT_READY'}); }
if (!s || !s.rpc) { return void cb({error: 'RPC_NOT_READY'}); }
s.rpc.getFileListSize(function (err, bytes) {
if (!s.id && typeof(bytes) === 'number') {