Guard against possible type error

pull/1/head
yflory 4 years ago
parent 61b8830df4
commit 8fc5647aea

@ -1046,7 +1046,7 @@ define([
if (!team) { return void cb ({error: 'ENOENT'}); }
if (team.offline) { return void cb({error: 'OFFLINE'}); }
if (!team.roster) { return void cb({error: 'NO_ROSTER'}); }
delete data.metadata.offline;
if (data.metadata) { delete data.metadata.offline; }
team.roster.metadata(data.metadata, function (err) {
if (err) { return void cb({error: err}); }
var localTeam = ctx.store.proxy.teams[teamId];

Loading…
Cancel
Save