Fix issues with missing Splatfest vote/win numbers

Unfortunately, Nintendo has removed this data from SplatNet. I'm leaving this in here for now though in case it comes back.
This commit is contained in:
Matt Isenhower 2018-01-30 16:50:18 -08:00
parent 83fed268e2
commit cb6faef647

View File

@ -39,8 +39,8 @@ export default {
methods: {
resultTitle(team) {
if (this.type == 'vote')
return this.results.team_participants[team];
return this.results.team_scores[`${team}_${this.type}`];
return this.results.team_participants && this.results.team_participants[team];
return this.results.team_scores && this.results.team_scores[`${team}_${this.type}`];
},
},
}