1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2025-01-24 16:47:32 +01:00

Lefun: Fix typo

This commit is contained in:
Yukai Li 2020-10-05 05:35:41 -06:00 committed by Gitea
parent 741fdbcbd2
commit b225ab98a8

View File

@ -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 + " - ";
}