Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
fix(live-feed): fix playoff day offset
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Reed committed Sep 12, 2020
1 parent 7ed9b20 commit c8eb1c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/live-feed/live-feed.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export class LiveFeedPage implements OnInit, OnDestroy {
}

getPlayoffDay() {
return (this.data?.games?.postseason?.playoffs?.playoffDay || -1) + 1;
return (this.data?.games?.postseason?.playoffs?.playoffDay || 0);
}

getNextSeasonStart() {
Expand Down

0 comments on commit c8eb1c1

Please sign in to comment.