diff options
author | 2017-01-23 20:58:49 +0000 | |
---|---|---|
committer | 2017-01-23 20:58:53 +0000 | |
commit | 8eb691db0e9da7eca3708d6fe89d895bd6a95f3d (patch) | |
tree | 77006fac192c7e3a3a510aeb90f86d0eb20a1416 | |
parent | 0fd8eb2342e5f7d35a721656958a4cd7ff84176e (diff) | |
parent | 9decd5ab3b2c8d6742c3a4cb10a107fa9cf43afc (diff) |
Merge "Restore foreground service notifications"
-rw-r--r-- | services/core/java/com/android/server/am/ActiveServices.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/am/ActiveServices.java b/services/core/java/com/android/server/am/ActiveServices.java index 4b89b404f9b6..1bba7ec1c68a 100644 --- a/services/core/java/com/android/server/am/ActiveServices.java +++ b/services/core/java/com/android/server/am/ActiveServices.java @@ -707,7 +707,7 @@ public final class ActiveServices { try { ServiceRecord r = findServiceLocked(className, token, userId); if (r != null) { - setServiceForegroundInnerLocked(r, userId, notification, flags); + setServiceForegroundInnerLocked(r, id, notification, flags); } } finally { Binder.restoreCallingIdentity(origId); |