feat: Groups and Direct Chats virtual spaces option

This commit is contained in:
20kdc 2022-04-03 17:00:35 +00:00 committed by Krille Fear
commit 919b0822e5
9 changed files with 285 additions and 87 deletions

View file

@ -480,6 +480,9 @@ class MatrixState extends State<Matrix> with WidgetsBindingObserver {
store
.getItemBool(SettingKeys.hideUnknownEvents, AppConfig.hideUnknownEvents)
.then((value) => AppConfig.hideUnknownEvents = value);
store
.getItemBool(SettingKeys.separateChatTypes, AppConfig.separateChatTypes)
.then((value) => AppConfig.separateChatTypes = value);
store
.getItemBool(SettingKeys.autoplayImages, AppConfig.autoplayImages)
.then((value) => AppConfig.autoplayImages = value);