2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-19 09:25:34 +00:00

[fenix] 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 a629c34452
commit c364bdd90a

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
}