Skip to content

Commit

Permalink
Release Candidate v0.6.1 (single score fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
vasqued2 committed Jan 6, 2023
1 parent 17eb40c commit f15ac0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/ha-teamtracker-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ if (sport.includes("hockey")) {
in2 = stateObj.attributes.quarter;

if (score != []) {
if (score[1] && score[2]) {
if (score[1] || score[2]) {
subscores[1] = score[1].split("(");
subscores[2] = score[2].split("(");

Expand Down

0 comments on commit f15ac0d

Please sign in to comment.