We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbbb4ae commit 1e008c8Copy full SHA for 1e008c8
tptools/ext/squore/feed.py
@@ -77,6 +77,10 @@ def _make_sections_for_courts(
77
courtnamepolicy: CourtNamePolicy,
78
matchfeedparams: MatchFeedParams,
79
) -> list[MatchesSection]:
80
+ if matchfeedparams.court is None and matchfeedparams.only_this_court:
81
+ logger.info("Disabling only_this_court for device without assigned court")
82
+ matchfeedparams.only_this_court = False
83
+
84
sections = []
85
for matchcourt, sqmatches in matches_by_court.items():
86
if matchcourt is None:
0 commit comments