Fix #7649: Fix missing NOT in asFeatureWebChannelsDisabled check (#7650)

fennec/nightly
Colin Lee 4 years ago committed by GitHub
parent 7baf54f566
commit cf220427d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -435,7 +435,7 @@ abstract class BaseBrowserFragment : Fragment(), UserInteractionHandler, Session
}
@Suppress("ConstantConditionIf")
if (FeatureFlags.asFeatureWebChannelsDisabled) {
if (!FeatureFlags.asFeatureWebChannelsDisabled) {
webchannelIntegration.set(
feature = FxaWebChannelFeature(
requireContext(),

Loading…
Cancel
Save