Bug 1807933 - Enable places storage maintenance feature for the Beta variant.

Places storage maintenance flag is enabled for the Beta variant, previously it was enabled only for Nightly variant. This feature registers a periodic storage maintenance worker that runs to prune and maintain places db.
This commit is contained in:
kycn 2022-12-29 15:38:19 +01:00 committed by mergify[bot]
parent 58c530cd4b
commit c3b9c540ca
1 changed files with 1 additions and 1 deletions

View File

@ -72,5 +72,5 @@ object FeatureFlags {
*
* Feature flag tracking: https://github.com/mozilla-mobile/fenix/issues/27759
* */
val storageMaintenanceFeature = Config.channel.isNightlyOrDebug
val storageMaintenanceFeature = Config.channel.isNightlyOrDebug || Config.channel.isBeta
}