disable soft logout

This commit is contained in:
OfficialDakari 2025-06-16 15:48:39 +05:00
parent 8cf0c5bd0c
commit 276d7f548c
2 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,7 @@ enum AppSettings<T> {
audioRecordingNoiseSuppress<bool>('audioRecordingNoiseSuppress', true),
audioRecordingBitRate<int>('audioRecordingBitRate', 64000),
audioRecordingSamplingRate<int>('audioRecordingSamplingRate', 44100),
enableSoftLogout<bool>('enableSoftLogout', true),
enableSoftLogout<bool>('enableSoftLogout', false),
pushNotificationsGatewayUrl<String>(
'pushNotificationsGatewayUrl',
'https://push.fluffychat.im/_matrix/push/v1/notify',

View File

@ -77,6 +77,7 @@ Future<void> startGui(List<Client> clients, SharedPreferences store) async {
await firstClient?.accountDataLoading;
ErrorWidget.builder = (details) => FluffyChatErrorWidget(details);
Logs().w("${clients.length} clients");
runApp(FluffyChatApp(clients: clients, pincode: pin, store: store));
}