mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-02-04 04:54:10 +01:00
Bangle.js: Allow reply to non-sms notifications
This commit is contained in:
parent
665656ddc0
commit
53007a8bad
@ -649,8 +649,10 @@ public class BangleJSDeviceSupport extends AbstractBTLEDeviceSupport {
|
|||||||
* they use a handle that was provided in an action list on the onNotification.. event */
|
* they use a handle that was provided in an action list on the onNotification.. event */
|
||||||
if (deviceEvtNotificationControl.event == GBDeviceEventNotificationControl.Event.REPLY) {
|
if (deviceEvtNotificationControl.event == GBDeviceEventNotificationControl.Event.REPLY) {
|
||||||
Long foundHandle = mNotificationReplyAction.lookup((int)deviceEvtNotificationControl.handle);
|
Long foundHandle = mNotificationReplyAction.lookup((int)deviceEvtNotificationControl.handle);
|
||||||
if (foundHandle!=null)
|
LOG.debug("Got notification reply: handle={} foundHandle={}", deviceEvtNotificationControl.handle, foundHandle);
|
||||||
|
if (foundHandle != null) {
|
||||||
deviceEvtNotificationControl.handle = foundHandle;
|
deviceEvtNotificationControl.handle = foundHandle;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
evaluateGBDeviceEvent(deviceEvtNotificationControl);
|
evaluateGBDeviceEvent(deviceEvtNotificationControl);
|
||||||
}
|
}
|
||||||
@ -1280,7 +1282,7 @@ public class BangleJSDeviceSupport extends AbstractBTLEDeviceSupport {
|
|||||||
if (notificationSpec.attachedActions!=null)
|
if (notificationSpec.attachedActions!=null)
|
||||||
for (int i=0;i<notificationSpec.attachedActions.size();i++) {
|
for (int i=0;i<notificationSpec.attachedActions.size();i++) {
|
||||||
NotificationSpec.Action action = notificationSpec.attachedActions.get(i);
|
NotificationSpec.Action action = notificationSpec.attachedActions.get(i);
|
||||||
if (action.type==NotificationSpec.Action.TYPE_WEARABLE_REPLY) {
|
if (action.type == NotificationSpec.Action.TYPE_WEARABLE_REPLY || action.type == NotificationSpec.Action.TYPE_SYNTECTIC_REPLY_PHONENR) {
|
||||||
mNotificationReplyAction.add(notificationSpec.getId(), action.handle);
|
mNotificationReplyAction.add(notificationSpec.getId(), action.handle);
|
||||||
canReply = true;
|
canReply = true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user