commit 718aa9872a208d531c9ef2e6f9a164bfb28390a7 parent 73f48edef084b6144689d4f8f8baa39c0fbceef6 Author: knutsen <samuel@knutsen.co> Date: Thu, 29 Apr 2021 16:46:12 +0100 Missing comma, JFL. Diffstat:
M | lib/commands/weather.ts | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/commands/weather.ts b/lib/commands/weather.ts @@ -81,7 +81,7 @@ export default async (home_scope: HomeScope) => { c = JSON.parse(info_body); } catch (e) { console.warn("met.no response: ", weather_body); - console.warn("openweather response: "info_body); + console.warn("openweather response: ", info_body); return error(e); }