mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-06-05 21:49:48 +02:00
Pebble: fix privacy mode title being "null" in some cases
This commit is contained in:
@@ -122,7 +122,13 @@ public class PebbleSupport extends AbstractSerialDeviceSupport {
|
||||
notificationSpec.title = null;
|
||||
notificationSpec.phoneNumber = null;
|
||||
} else if (getContext().getString(R.string.p_pebble_privacy_mode_content).equals(currentPrivacyMode)) {
|
||||
notificationSpec.sender = "\n\n\n\n\n" + notificationSpec.sender;
|
||||
if (notificationSpec.sender != null) {if (notificationSpec.sender != null) {
|
||||
notificationSpec.sender = "\n\n\n\n\n" + notificationSpec.sender;
|
||||
} else if (notificationSpec.title != null) {
|
||||
notificationSpec.title = "\n\n\n\n\n" + notificationSpec.title;
|
||||
} else if (notificationSpec.subject != null) {
|
||||
notificationSpec.subject = "\n\n\n\n\n" + notificationSpec.subject;
|
||||
}
|
||||
}
|
||||
if (reconnect()) {
|
||||
super.onNotification(notificationSpec);
|
||||
|
Reference in New Issue
Block a user