1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-22 14:52:25 +02:00

Added forgotten null terminator for the title field

This commit is contained in:
musover 2022-11-26 17:47:56 +00:00 committed by Gitea
parent 4386f321a3
commit 7ed2f90fde

View File

@ -63,7 +63,7 @@ public class AmazfitGTS2MiniSupport extends AmazfitGTS2Support {
message = "-\0"; //if the sender is not accepted, whatever goes in this field is ignored
message += senderOrTitle;
} else {
message = senderOrTitle;
message = senderOrTitle + "\0";
}
if(notificationSpec.subject != null) {