Merge "Fixed that notifications could still get stuck" into qt-dev

am: 13015d24f8

Change-Id: I54f0dad7ce7c2d1383eb9e7dfe70cce32273911c
This commit is contained in:
Selim Cinek
2019-05-28 17:35:24 -07:00
committed by android-build-merger

View File

@@ -67,7 +67,7 @@ class NotificationWakeUpCoordinator @Inject constructor(
private val mDozeParameters: DozeParameters;
var willWakeUp = false
set(value) {
if (value && mDozeAmount != 0.0f) {
if (!value || mDozeAmount != 0.0f) {
field = value
}
}