chore: Make webRTC opt-in

This commit is contained in:
Krille Fear 2022-02-19 11:58:21 +01:00
commit 74100bd777
7 changed files with 30 additions and 16 deletions

View file

@ -38,6 +38,7 @@ abstract class AppConfig {
static bool hideUnknownEvents = true;
static bool autoplayImages = true;
static bool sendOnEnter = false;
static bool experimentalVoip = false;
static const bool hideTypingUsernames = false;
static const bool hideAllStateEvents = false;
static const String inviteLinkPrefix = 'https://matrix.to/#/';

View file

@ -23,4 +23,5 @@ abstract class SettingKeys {
'chat.fluffychat.dont_ask_bootstrap';
static const String autoplayImages = 'chat.fluffy.autoplay_images';
static const String sendOnEnter = 'chat.fluffy.send_on_enter';
static const String experimentalVoip = 'chat.fluffy.experimental_voip';
}