Revert "Bangle.js: add support for SMS replies" - not needed as per #3654

This reverts commit 323f8028e0.
This commit is contained in:
Gordon Williams 2024-03-28 08:45:03 +00:00
parent 323f8028e0
commit 1165a5d03c
1 changed files with 1 additions and 2 deletions

View File

@ -1280,8 +1280,7 @@ public class BangleJSDeviceSupport extends AbstractBTLEDeviceSupport {
if (notificationSpec.attachedActions!=null)
for (int i=0;i<notificationSpec.attachedActions.size();i++) {
NotificationSpec.Action action = notificationSpec.attachedActions.get(i);
if (action.type==NotificationSpec.Action.TYPE_WEARABLE_REPLY ||
action.type==NotificationSpec.Action.TYPE_SYNTECTIC_REPLY_PHONENR) {
if (action.type==NotificationSpec.Action.TYPE_WEARABLE_REPLY) {
mNotificationReplyAction.add(notificationSpec.getId(), action.handle);
canReply = true;
}