Fix team invitation link #774

This commit is contained in:
yflory 2021-07-21 11:37:44 +02:00
parent d530a51f99
commit 0a5614b79f

View File

@ -195,7 +195,7 @@ define([
Pinpad.create(ctx.store.network, data, function (e, call) {
if (e) { return void cb(e); }
team.rpc = call;
team.onRpcReadyEvt.fire();
if (team && team.onRpcReadyEvt) { team.onRpcReadyEvt.fire(); }
cb();
}, Cache);
});