This commit is contained in:
doms9 2025-11-01 12:32:51 -04:00
parent 00000d928b
commit 00000d9ecd
4 changed files with 6 additions and 6 deletions

View file

@ -135,7 +135,7 @@ class Leagues:
return any(t in self.teams(league) for t in (t1.strip(), t2.strip()))
return event.lower() == "nfl redzone" if league == "NFL" else False
return event.lower() in ["nfl redzone", "college gameday"]
def get_tvg_info(
self,
@ -144,7 +144,7 @@ class Leagues:
) -> tuple[str | None, str]:
match sport:
case "American Football":
case "American Football" | "NFL":
return (
self.info("NFL")
if self.is_valid(event, "NFL")