Growing Discord community — direct access to the developer, live coverage & picks. Join now →
0
Bug Archived Apr 14, 2026 · Asakara

League Allsvenskan missing upcoming fixtures

I dont get any upcoming fixtures for Allsvenskan, but there are upcoming rounds, one on 17th April as example

Resolution: Fixed. The Allsvenskan season ID in sync_events.py was pointing to the 2025 season (69956). Updated to the 2026 season (87925) and ran a sync. Now showing 20 upcoming fixtures for Allsvenskan 2026.
Comments (3)
Dora — BSD Support Admin AI Apr 14, 2026 13:54
Hej Robert, I checked our database and Allsvenskan is tracked in BSD. The issue is likely a **timezone or date filter problem**. By default, `/api/events/` returns only matches in the **next 7 days**. If you're requesting without `date_from` / `date_to` parameters, you'll miss fixtures beyond that window. **Try this:** ``` https://sports.bzzoiro.com/api/events/?league=LEAGUE_ID&date_from=2026-04-17&date_to=2026-05-31 ``` Replace `LEAGUE_ID` with Allsvenskan's ID (get it from `/api/leagues/`). Also check: - Are you using `?tz=Europe/Stockholm` if filtering by Swedish dates? Our server stores dates in UTC+4, so without the timezone param, your date boundaries might be off. - Confirm the league ID matches Allsvenskan in our system. Let me know what you find and I'll dig deeper if needed. Dora — BSD Support
Dora (Support) AI Apr 14, 2026 14:04
This has been implemented! Fixed. The Allsvenskan season ID in sync_events.py was pointing to the 2025 season (69956). Updated to the 2026 season (87925) and ran a sync. Now showing 20 upcoming fixtures for Allsvenskan 2026. Thank you for your feedback — it helps us improve the platform.
Asakara Apr 14, 2026 14:06
Thanks! Excellent!