Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarticus committed Feb 25, 2025
1 parent fa77f88 commit 38fbb0c
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,18 +90,17 @@ internal class PostHogFeatureFlags(
response?.let {
synchronized(featureFlagsLock) {
if (response.quotaLimited?.contains("feature_flags") == true) {
config.logger.log("Feature flags are quota limited, clearing existing flags. Learn more about billing limits at https://posthog.com/docs/billing/limits-alerts")
config.logger.log(
"Feature flags are quota limited, clearing existing flags. " +
"Learn more about billing limits at https://posthog.com/docs/billing/limits-alerts",
)
this.featureFlags = null
this.featureFlagPayloads = null
config.cachePreferences?.let { preferences ->
preferences.remove(FEATURE_FLAGS)
preferences.remove(FEATURE_FLAGS_PAYLOAD)
}
<<<<<<< HEAD
return@executeSafely
=======
return@let
>>>>>>> main
}

if (response.errorsWhileComputingFlags) {
Expand Down

0 comments on commit 38fbb0c

Please sign in to comment.