feat: option to not send typing notifications

This commit is contained in:
Bnyro 2023-07-27 18:15:50 +02:00
commit 57b026b913
6 changed files with 36 additions and 13 deletions

View file

@ -489,6 +489,12 @@ class MatrixState extends State<Matrix> with WidgetsBindingObserver {
store
.getItemBool(SettingKeys.autoplayImages, AppConfig.autoplayImages)
.then((value) => AppConfig.autoplayImages = value);
store
.getItemBool(
SettingKeys.sendTypingNotifications,
AppConfig.sendTypingNotifications,
)
.then((value) => AppConfig.sendTypingNotifications = value);
store
.getItemBool(SettingKeys.sendOnEnter, AppConfig.sendOnEnter)
.then((value) => AppConfig.sendOnEnter = value);