Skip to content

Commit

Permalink
Show ? instead of err if weather is unknown.
Browse files Browse the repository at this point in the history
  • Loading branch information
peerdavid committed Aug 19, 2023
1 parent 0cec394 commit 463a107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/edgeclk/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
};

Expand Down

0 comments on commit 463a107

Please sign in to comment.