Skip to content

Commit

Permalink
Merge pull request #3668 from Septolum/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
bobrippling committed Nov 21, 2024
2 parents 4d4fe0f + 4b94a7c commit 1a26dc6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions apps/messages/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
0.62: Add option for driving on left (affects roundabout icons in navigation)
0.63: Add option to not open the first unread message
0.64: Only load from storage once in settings
0.65: Fix settings error introduced by two conflicting changes
2 changes: 1 addition & 1 deletion apps/messages/metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "messages",
"name": "Messages",
"version": "0.64",
"version": "0.65",
"description": "Library to handle, load and store message events received from Android/iOS",
"icon": "app.png",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion apps/messages/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
onchange: v => updateSetting("fontSize", v)
},
/*LANG*/'Auto-Open Unread Msg': {
value: !!settings().ignoreUnread,
value: !!settings.ignoreUnread,
onchange: v => updateSetting("ignoreUnread", v)
},
/*LANG*/'Auto-Open Music': {
Expand Down

0 comments on commit 1a26dc6

Please sign in to comment.