File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 87
87
0.62: Remove '.show' field, tidyup and fix .open if fast load not enabled
88
88
0.63: Fix messages app loading on clock without fast load
89
89
0.64: Ensure we don't get 'undefined' as the message body
90
+ 0.65: Make sure messages are saved if not in the clock app (fix #2460)
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ exports.listener = function(type, msg) {
29
29
}
30
30
31
31
const appSettings = require ( "Storage" ) . readJSON ( "messages.settings.json" , 1 ) || { } ;
32
- let loadMessages = ( Bangle . CLOCK || event . important ) ; // should we load the messages app?
32
+ let loadMessages = ( Bangle . CLOCK || msg . important ) ; // should we load the messages app?
33
33
if ( type === "music" ) {
34
34
if ( Bangle . CLOCK && msg . state && msg . title && appSettings . openMusic ) loadMessages = true ;
35
35
else return ;
Original file line number Diff line number Diff line change 2
2
"id" : " messagegui" ,
3
3
"name" : " Message UI" ,
4
4
"shortName" : " Messages" ,
5
- "version" : " 0.64 " ,
5
+ "version" : " 0.65 " ,
6
6
"description" : " Default app to display notifications from iOS and Gadgetbridge/Android" ,
7
7
"icon" : " app.png" ,
8
8
"type" : " app" ,
You can’t perform that action at this time.
0 commit comments