mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-02-04 04:54:10 +01:00
Garmin: Fix reply to sms
This commit is contained in:
parent
cf02a02a48
commit
9f1420e496
@ -221,6 +221,12 @@ public class DebugActivity extends AbstractGBActivity {
|
|||||||
replyAction.title = "Reply";
|
replyAction.title = "Reply";
|
||||||
replyAction.type = NotificationSpec.Action.TYPE_SYNTECTIC_REPLY_PHONENR;
|
replyAction.type = NotificationSpec.Action.TYPE_SYNTECTIC_REPLY_PHONENR;
|
||||||
notificationSpec.attachedActions.add(replyAction);
|
notificationSpec.attachedActions.add(replyAction);
|
||||||
|
} else if (notificationSpec.type == NotificationType.CONVERSATIONS) {
|
||||||
|
// REPLY action
|
||||||
|
NotificationSpec.Action replyAction = new NotificationSpec.Action();
|
||||||
|
replyAction.title = "Reply";
|
||||||
|
replyAction.type = NotificationSpec.Action.TYPE_WEARABLE_REPLY;
|
||||||
|
notificationSpec.attachedActions.add(replyAction);
|
||||||
}
|
}
|
||||||
|
|
||||||
GBApplication.deviceService().onNotification(notificationSpec);
|
GBApplication.deviceService().onNotification(notificationSpec);
|
||||||
|
@ -347,6 +347,7 @@ public class NotificationsHandler implements MessageHandler {
|
|||||||
for (NotificationSpec.Action action : notificationSpec.attachedActions) {
|
for (NotificationSpec.Action action : notificationSpec.attachedActions) {
|
||||||
switch (action.type) {
|
switch (action.type) {
|
||||||
case NotificationSpec.Action.TYPE_WEARABLE_REPLY:
|
case NotificationSpec.Action.TYPE_WEARABLE_REPLY:
|
||||||
|
case NotificationSpec.Action.TYPE_SYNTECTIC_REPLY_PHONENR:
|
||||||
garminActions.add(encodeNotificationAction(NotificationAction.REPLY_MESSAGES, action.title));
|
garminActions.add(encodeNotificationAction(NotificationAction.REPLY_MESSAGES, action.title));
|
||||||
break;
|
break;
|
||||||
case NotificationSpec.Action.TYPE_SYNTECTIC_DISMISS:
|
case NotificationSpec.Action.TYPE_SYNTECTIC_DISMISS:
|
||||||
|
Loading…
Reference in New Issue
Block a user