From 463a107c2809c37adb2882ffc5042e5cc8d92a5e Mon Sep 17 00:00:00 2001 From: David Peer Date: Sat, 19 Aug 2023 07:22:56 +0200 Subject: [PATCH] Show ? instead of err if weather is unknown. --- apps/edgeclk/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/edgeclk/app.js b/apps/edgeclk/app.js index 603dbd9218..f9d5f803bd 100644 --- a/apps/edgeclk/app.js +++ b/apps/edgeclk/app.js @@ -76,7 +76,7 @@ weather.drawIcon(w, g.getWidth()-20, g.getHeight()-15, 14); } catch(e) { - g.drawString("ERR", g.getWidth()-3, g.getHeight() - 1, true); + g.drawString("???", g.getWidth()-3, g.getHeight() - 1, true); } };