1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-24 10:56:50 +01:00

Added forgotten newline to title when it is being repeated

This commit is contained in:
musover 2022-12-04 16:01:56 +00:00 committed by Gitea
parent 7ed2f90fde
commit c05734ed0f

View File

@ -61,7 +61,7 @@ public class AmazfitGTS2MiniSupport extends AmazfitGTS2Support {
*/ */
if(!acceptsSender && !senderOrTitle.equals(notificationSpec.sourceName)) { if(!acceptsSender && !senderOrTitle.equals(notificationSpec.sourceName)) {
message = "-\0"; //if the sender is not accepted, whatever goes in this field is ignored message = "-\0"; //if the sender is not accepted, whatever goes in this field is ignored
message += senderOrTitle; message += senderOrTitle + "\n";
} else { } else {
message = senderOrTitle + "\0"; message = senderOrTitle + "\0";
} }