Skip to content

Commit

Permalink
Fix config feature flag issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ianrumac committed Nov 29, 2024
1 parent 8e730fd commit 2ab73fe
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ data class Config(
rawFeatureFlags.find { it.key == "enable_multiple_paywall_urls" }?.enabled
?: false,
enableConfigRefresh =
rawFeatureFlags.find { it.key == "enable_config_refresh" }?.enabled
rawFeatureFlags.find { it.key == "enable_config_refresh_v2" }?.enabled
?: false,
enableSessionEvents =
rawFeatureFlags.find { it.key == "enable_session_events" }?.enabled
Expand All @@ -55,6 +55,9 @@ data class Config(
disableVerboseEvents =
rawFeatureFlags.find { it.key == "disable_verbose_events" }?.enabled
?: false,
enableCELLogging =
rawFeatureFlags.find { it.key == "enable_cel_logging" }?.enabled
?: false,
)

companion object {
Expand Down

0 comments on commit 2ab73fe

Please sign in to comment.