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

Commit 94f67a02 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Unflip bit to disallow FGS dismissal" into rvc-dev am: 7ea1fe4c am: 8bd50ec1

Change-Id: Ibc48b12131ea40338b0115b8f79c68f2b4ddcafe
parents 1e729114 8bd50ec1
Loading
Loading
Loading
Loading
+1 −1
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, true)
                DeviceConfig.NAMESPACE_SYSTEMUI, NOTIFICATIONS_ALLOW_FGS_DISMISSAL, false)
    }

    return sIsEnabled!!