From 59c31c328852ed671d8e7cc3d3c1bb8321e49708 Mon Sep 17 00:00:00 2001 From: Fabian Kirchner Date: Tue, 13 Aug 2024 11:29:59 +0200 Subject: fix: insert space between forecast symbol and temperatures --- app/Sensor.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Sensor.hs b/app/Sensor.hs index 0b1ab0a..08f4f11 100644 --- a/app/Sensor.hs +++ b/app/Sensor.hs @@ -454,7 +454,7 @@ weatherForecast = do Nothing -> airTemperature Just (Next6Hours {summary, details}) -> - mconcat $ intersperse (P.pretty " ") [symbol, tempMax, tempMin, airTemperature] + mconcat $ intersperse (P.pretty " ") [mconcat [symbol, P.pretty " "], tempMax, tempMin, airTemperature] where symbol = P.pretty -- cgit v1.2.3