Pebble: fix privacy mode title being "null" in some cases

here
Andreas Shimokawa 2017-02-09 17:10:39 +01:00
parent 436a7ddb24
commit 5bb1995eb9
1 changed files with 7 additions and 1 deletions

View File

@ -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);