0.61: Fix regression where loading into messages app stops back from working (#2398)
parent
1dcf6085d5
commit
487742f037
|
|
@ -83,3 +83,4 @@
|
||||||
Don't write messages to flash until the app closes
|
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.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.60: Fix saving of removal messages if UI not open
|
||||||
|
0.61: Fix regression where loading into messages app stops back from working (#2398)
|
||||||
|
|
|
||||||
|
|
@ -370,6 +370,7 @@ function checkMessages(options) {
|
||||||
}
|
}
|
||||||
// If we have a new message, show it
|
// If we have a new message, show it
|
||||||
if ((toShow||options.showMsgIfUnread) && newMessages.length) {
|
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);
|
showMessage(newMessages[0].id);
|
||||||
// buzz after showMessage, so being busy during layout doesn't affect the buzz pattern
|
// buzz after showMessage, so being busy during layout doesn't affect the buzz pattern
|
||||||
if (global.BUZZ_ON_NEW_MESSAGE) {
|
if (global.BUZZ_ON_NEW_MESSAGE) {
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"id": "messagegui",
|
"id": "messagegui",
|
||||||
"name": "Message UI",
|
"name": "Message UI",
|
||||||
"shortName": "Messages",
|
"shortName": "Messages",
|
||||||
"version": "0.60",
|
"version": "0.61",
|
||||||
"description": "Default app to display notifications from iOS and Gadgetbridge/Android",
|
"description": "Default app to display notifications from iOS and Gadgetbridge/Android",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"type": "app",
|
"type": "app",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue