Commit abd59835 authored by Matthew Finkel's avatar Matthew Finkel
Browse files

Bug 40016: Don't install WebCompat webext

parent a710dbff
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -104,7 +104,6 @@ class Core(private val context: Context, private val crashReporter: CrashReporti
                trackingProtectionPolicyFactory.createTrackingProtectionPolicy()
            )
        ).also {
            WebCompatFeature.install(it)

            /**
             * There are some issues around localization to be resolved, as well as questions around
@@ -112,7 +111,8 @@ class Core(private val context: Context, private val crashReporter: CrashReporti
             * disabled in Fenix Release builds for now.
             * This is consistent with both Fennec and Firefox Desktop.
             */
            if (Config.channel.isNightlyOrDebug || Config.channel.isBeta) {
            if (false && (Config.channel.isNightlyOrDebug || Config.channel.isBeta)) {
                WebCompatFeature.install(it)
                WebCompatReporterFeature.install(it, "fenix")
            }