Show ? instead of err if weather is unknown.

pull/2978/head
David Peer 2023-08-19 07:22:56 +02:00
parent 0cec394aab
commit 463a107c28
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
};