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

am: 13015d24f8

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

View File

@@ -65,7 +65,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
}
}