diff --git a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/lefun/requests/SendNotificationRequest.java b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/lefun/requests/SendNotificationRequest.java index 7f4262f9c..689fb6f1f 100644 --- a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/lefun/requests/SendNotificationRequest.java +++ b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/lefun/requests/SendNotificationRequest.java @@ -98,7 +98,7 @@ public class SendNotificationRequest extends AbstractSendNotificationRequest { message += notification.sender + " - "; } else if (notification.title != null && !notification.title.isEmpty()) { message += notification.title + " - "; - } else if (notification.subject != null && !notification.sender.isEmpty()) { + } else if (notification.subject != null && !notification.subject.isEmpty()) { message += notification.subject + " - "; }