1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-07 13:47:49 +02: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)) {
message = "-\0"; //if the sender is not accepted, whatever goes in this field is ignored
message += senderOrTitle;
message += senderOrTitle + "\n";
} else {
message = senderOrTitle + "\0";
}