Skip to content

Commit 1a26dc6

Browse files
committed
Merge pull request espruino#3668 from Septolum/patch-1
2 parents 4d4fe0f + 4b94a7c commit 1a26dc6

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

apps/messages/ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
0.62: Add option for driving on left (affects roundabout icons in navigation)
99
0.63: Add option to not open the first unread message
1010
0.64: Only load from storage once in settings
11+
0.65: Fix settings error introduced by two conflicting changes

apps/messages/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "messages",
33
"name": "Messages",
4-
"version": "0.64",
4+
"version": "0.65",
55
"description": "Library to handle, load and store message events received from Android/iOS",
66
"icon": "app.png",
77
"type": "module",

apps/messages/settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
onchange: v => updateSetting("fontSize", v)
6161
},
6262
/*LANG*/'Auto-Open Unread Msg': {
63-
value: !!settings().ignoreUnread,
63+
value: !!settings.ignoreUnread,
6464
onchange: v => updateSetting("ignoreUnread", v)
6565
},
6666
/*LANG*/'Auto-Open Music': {

0 commit comments

Comments
 (0)