Skip to content

Commit

Permalink
Default enable voice message feature flag
Browse files Browse the repository at this point in the history
:party
  • Loading branch information
Marco Romano committed Oct 27, 2023
1 parent a07286a commit e2f88cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ enum class FeatureFlags(
key = "feature.voicemessages",
title = "Voice messages",
description = "Send and receive voice messages",
defaultValue = false,
defaultValue = true,
),
PinUnlock(
key = "feature.pinunlock",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class StaticFeatureFlagProvider @Inject constructor() :
FeatureFlags.LocationSharing -> true
FeatureFlags.Polls -> true
FeatureFlags.NotificationSettings -> true
FeatureFlags.VoiceMessages -> false
FeatureFlags.VoiceMessages -> true
FeatureFlags.PinUnlock -> false
FeatureFlags.InRoomCalls -> false
FeatureFlags.Mentions -> false
Expand Down

0 comments on commit e2f88cf

Please sign in to comment.