0.61: Fix regression where loading into messages app stops back from working (#2398)

pull/2401/head
Gordon Williams 2022-12-14 17:24:31 +00:00
parent 1dcf6085d5
commit 487742f037
3 changed files with 3 additions and 1 deletions

View File

@ -83,3 +83,4 @@
Don't write messages to flash until the app closes
0.59: Ensure we do write messages if messages app can't be fast loaded (see #2373)
0.60: Fix saving of removal messages if UI not open
0.61: Fix regression where loading into messages app stops back from working (#2398)

View File

@ -370,6 +370,7 @@ function checkMessages(options) {
}
// If we have a new message, show it
if ((toShow||options.showMsgIfUnread) && newMessages.length) {
delete newMessages[0].show; // stop us getting stuck here if we're called a second time
showMessage(newMessages[0].id);
// buzz after showMessage, so being busy during layout doesn't affect the buzz pattern
if (global.BUZZ_ON_NEW_MESSAGE) {

View File

@ -2,7 +2,7 @@
"id": "messagegui",
"name": "Message UI",
"shortName": "Messages",
"version": "0.60",
"version": "0.61",
"description": "Default app to display notifications from iOS and Gadgetbridge/Android",
"icon": "app.png",
"type": "app",