Add Werkout channel playback and autoplay

This commit is contained in:
Trey t
2026-03-26 20:53:08 -05:00
parent bae265b132
commit 127125ae1b
6 changed files with 957 additions and 48 deletions

View File

@@ -47,6 +47,12 @@ struct Game: Identifiable, Sendable {
var isLive: Bool { status.isLive }
var isFinal: Bool { if case .final_ = status { return true }; return false }
var isSpecialChannel: Bool {
gamePk == nil
&& broadcasts.isEmpty
&& awayTeam.code == homeTeam.code
&& awayTeam.displayName == homeTeam.displayName
}
}
struct TeamInfo: Sendable {