Pebble: always use 2.x notification on FW 2.x except for K9

FW 2.x notifications enables the "dismiss all" action, but for K9 we would loose
the mail icon. So K9 still needs the force option.
live-activity-data
Andreas Shimokawa 2015-08-15 22:38:10 +02:00
parent 4ba5a7804a
commit c69bf1b0af
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ public class PebbleProtocol extends GBDeviceProtocol {
// 3.x notification
String[] parts = {title, subtitle, body};
return encodeBlobdbNotification((int) (ts & 0xffffffff), parts);
} else if (mForceProtocol) {
} else if (mForceProtocol || type != NOTIFICATION_EMAIL) {
// 2.x notification
return encodeExtensibleNotification(id, (int) (ts & 0xffffffff), title, subtitle, body, type);
} else {