From 4b19282459ad71905fa2b289e885226e855fc9e2 Mon Sep 17 00:00:00 2001 From: Martin Polden Date: Tue, 17 Aug 2021 19:05:38 +0200 Subject: http: Request more departures --- http/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/http.go b/http/http.go index d8f82ad..a72f89e 100644 --- a/http/http.go +++ b/http/http.go @@ -123,7 +123,7 @@ func (s *Server) enturDepartures(urlPrefix string, stopID int, direction string) if hit { departures = cached.(Departures) } else { - enturDepartures, err := s.Entur.Departures(10, stopID) + enturDepartures, err := s.Entur.Departures(25, stopID) if err != nil { return Departures{}, hit, err } -- cgit v1.2.3