Skip to content

Commit

Permalink
chore: make useSFTForOneToOneCalls default to true
Browse files Browse the repository at this point in the history
  • Loading branch information
ohassine committed Jul 26, 2024
1 parent 08ffe8a commit 2e5a9f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class FeatureConfigMapperImpl : FeatureConfigMapper {
override fun fromDTO(data: FeatureConfigData.ConferenceCalling): ConferenceCallingModel =
ConferenceCallingModel(
status = fromDTO(data.status),
useSFTForOneOnOneCalls = data.config?.useSFTForOneToOneCalls ?: false
useSFTForOneOnOneCalls = data.config?.useSFTForOneToOneCalls ?: true
)

override fun fromDTO(data: FeatureConfigData.E2EI?): E2EIModel =
Expand Down

0 comments on commit 2e5a9f3

Please sign in to comment.