Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c9ee4bf6 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Flip bit to allow dismissal of fgs notifications" into rvc-dev am:...

Merge "Flip bit to allow dismissal of fgs notifications" into rvc-dev am: cb016498 am: 0f05748d am: 6431de51

Change-Id: I6ef573e86493f82dd3659db77f96420de483eca4
parents f9f2e87c 6431de51
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ class ForegroundServiceDismissalFeatureController @Inject constructor(
private fun isEnabled(proxy: DeviceConfigProxy): Boolean {
    if (sIsEnabled == null) {
        sIsEnabled = proxy.getBoolean(
                DeviceConfig.NAMESPACE_SYSTEMUI, NOTIFICATIONS_ALLOW_FGS_DISMISSAL, false)
                DeviceConfig.NAMESPACE_SYSTEMUI, NOTIFICATIONS_ALLOW_FGS_DISMISSAL, true)
    }

    return sIsEnabled!!