From 36891a196b0d446b355085b1c8982391c0366402 Mon Sep 17 00:00:00 2001 From: Inex Code Date: Thu, 29 Oct 2020 10:03:21 +0000 Subject: [PATCH] fix: swipe settings were stored in wrong place Ref #15 --- lib/views/settings/settings_chat.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/views/settings/settings_chat.dart b/lib/views/settings/settings_chat.dart index 7bf4a6b..13809c4 100644 --- a/lib/views/settings/settings_chat.dart +++ b/lib/views/settings/settings_chat.dart @@ -40,13 +40,13 @@ class _ChatSettingsState extends State { Matrix.of(context).swipeToEndAction = action; await Matrix.of(context) .store - .setItem('chat.fluffy.swipeToEndAction', action); + .setItem('dev.inex.furrychat.swipeToEndAction', action); setState(() => null); } else { Matrix.of(context).swipeToStartAction = action; await Matrix.of(context) .store - .setItem('chat.fluffy.swipeToStartAction', action); + .setItem('dev.inex.furrychat.swipeToStartAction', action); setState(() => null); } }