Commit a39a9e5b authored by Emily Kager's avatar Emily Kager Committed by Emily Kager
Browse files

No issue: Enable about:config in beta builds

parent 1ee0243e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -44,6 +44,7 @@ object GeckoProvider {
            .crashHandler(CrashHandlerService::class.java)
            .useContentProcessHint(true)
            .telemetryDelegate(GeckoAdapter())
            .aboutConfigEnabled(Config.channel.isBeta)
            .debugLogging(Config.channel.isDebug)
            .build()

+7 −0
Original line number Diff line number Diff line
@@ -40,6 +40,13 @@ enum class ReleaseChannel {
            else -> false
        }

    val isBeta: Boolean
        get() = when (this) {
            FennecBeta -> true
            FenixBeta -> true
            else -> false
        }

    val isNightlyOrDebug: Boolean
        get() = when (this) {
            FenixNightly -> true