diff --git a/statusscreen-weather.go b/statusscreen-weather.go index 5a99bc1..7d7ab1e 100644 --- a/statusscreen-weather.go +++ b/statusscreen-weather.go @@ -23,7 +23,7 @@ func (weather *Weather) GetOutput() []string { parts := strings.Split(weather.lastResponse, "\n") - if len(parts) > 6 { + if len(parts) >= 37 { return parts[:37] }