disable soft logout
This commit is contained in:
parent
8cf0c5bd0c
commit
276d7f548c
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue