commit | c476a85e7e041045b23dfcd53f6808df9e1f1286 | [log] [tgz] |
---|---|---|
author | Amith Yamasani <yamasani@google.com> | Fri Feb 09 20:49:32 2018 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Fri Feb 09 20:49:32 2018 +0000 |
tree | bb8eadeeaa64ba81057fd332f241b0f2eceff993 | |
parent | b1632226b4ec0b8cb70c32d2352a47f0f67435c9 [diff] | |
parent | 129b48181ed9e8368c6e8ebc2c0b281e1492b368 [diff] |
Merge "Add missing callback to StatusBarService for inline reply"
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/NotificationRemoteInputManager.java b/packages/SystemUI/src/com/android/systemui/statusbar/NotificationRemoteInputManager.java index f25379a..3c480d8 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/NotificationRemoteInputManager.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/NotificationRemoteInputManager.java
@@ -299,6 +299,11 @@ } }, REMOTE_INPUT_KEPT_ENTRY_AUTO_CANCEL_DELAY); } + try { + mBarService.onNotificationDirectReplied(entry.notification.getKey()); + } catch (RemoteException e) { + // Nothing to do, system going down + } } });