Remove allowVoipWithNoMedia feature flag (#31087)

* Remove allowVoipWithNoMedia feature flag

* whoops

* remove a string
This commit is contained in:
Will Hunt
2025-10-27 13:08:31 +00:00
committed by GitHub
parent 8376e43a03
commit dae5b6b43b
4 changed files with 0 additions and 38 deletions

View File

@@ -1474,7 +1474,6 @@
"upload_file": "Upload a file"
},
"labs": {
"allow_screen_share_only_mode": "Allow screen share only mode",
"ask_to_join": "Enable ask to join",
"automatic_debug_logs": "Automatically send debug logs on any error",
"automatic_debug_logs_decryption": "Automatically send debug logs on decryption errors",

View File

@@ -704,10 +704,6 @@ export class ElementCall extends Call {
params.append("allowIceFallback", "true");
}
if (SettingsStore.getValue("feature_allow_screen_share_only_mode")) {
params.append("allowVoipWithNoMedia", "true");
}
// Set custom fonts
if (SettingsStore.getValue("useSystemFont")) {
SettingsStore.getValue("systemFont")

View File

@@ -222,7 +222,6 @@ export interface Settings {
"feature_element_call_video_rooms": IFeature;
"feature_group_calls": IFeature;
"feature_disable_call_per_sender_encryption": IFeature;
"feature_allow_screen_share_only_mode": IFeature;
"feature_location_share_live": IFeature;
"feature_dynamic_room_predecessors": IFeature;
"feature_render_reaction_images": IFeature;
@@ -644,16 +643,6 @@ export const SETTINGS: Settings = {
displayName: _td("labs|feature_disable_call_per_sender_encryption"),
default: false,
},
"feature_allow_screen_share_only_mode": {
isFeature: true,
labsGroup: LabGroup.VoiceAndVideo,
supportedLevels: LEVELS_DEVICE_ONLY_SETTINGS_WITH_CONFIG_PRIORITISED,
supportedLevelsAreOrdered: true,
description: _td("labs|under_active_development"),
displayName: _td("labs|allow_screen_share_only_mode"),
controller: new ReloadOnChangeController(),
default: false,
},
"feature_location_share_live": {
isFeature: true,
labsGroup: LabGroup.Messaging,