From 0c76824775ae76ca0dcb70a8db12ae3304f3a71e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Dvo=C5=99=C3=A1k?= Date: Tue, 26 Aug 2025 08:18:50 +0200 Subject: [PATCH] fix futsal --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index f642a22..9b5771d 100644 --- a/main.go +++ b/main.go @@ -140,7 +140,7 @@ func parseCompetitionMatchesFromFotbal(pageURL, clubType, clubName, clubID strin reportURL := "" if matchID != "" { if strings.EqualFold(clubType, "futsal") { - reportURL = fmt.Sprintf("https://www.fotbal.cz/futsal/zapasy/zapas/%s", matchID) + reportURL = fmt.Sprintf("https://www.fotbal.cz/futsal/zapasy/futsal/%s", matchID) } else { reportURL = fmt.Sprintf("https://www.fotbal.cz/souteze/zapasy/zapas/%s", matchID) }