Move disable_chat_feature to the UI section

This commit is contained in:
Benoit Martins 2025-10-29 16:38:04 +01:00
parent 1aea0444f4
commit 4d77b18f5b

View file

@ -256,14 +256,14 @@ class CorePreferences {
}
}
static var disableChatFeature: Bool {
get {
return Config.get().getBool(section: "app", key: "disable_chat_feature", defaultValue: false)
}
set {
Config.get().setBool(section: "app", key: "disable_chat_feature", value: newValue)
}
}
static var disableChatFeature: Bool {
get {
return Config.get().getBool(section: "ui", key: "disable_chat_feature", defaultValue: false)
}
set {
Config.get().setBool(section: "ui", key: "disable_chat_feature", value: newValue)
}
}
static var disableMeetings: Bool {
get {