Default enable voice message feature flag (#1669)

:party
This commit is contained in:
Marco Romano
2023-10-27 17:16:32 +02:00
committed by GitHub
parent ad01421b22
commit 473ac2dcc1
2 changed files with 2 additions and 2 deletions

View File

@@ -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",

View File

@@ -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