fix: Minor fixes

onboarding
Christian Pauly 5 years ago
parent 009a79c13f
commit 1c80090ccb

@ -87,6 +87,11 @@
"type": "text",
"placeholders": {}
},
"areYouSureYouWantToLogout": "Are you sure you want to log out?",
"@areYouSureYouWantToLogout": {
"type": "text",
"placeholders": {}
},
"askSSSSCache": "Please enter your secure store passphrase or recovery key to cache the keys.",
"@askSSSSCache": {
"type": "text",

@ -28,6 +28,7 @@ class Discover extends StatefulWidget {
class _DiscoverState extends State<Discover> {
Future<PublicRoomsResponse> _publicRoomsResponse;
String _lastServer;
Timer _coolDown;
String _genericSearchTerm;
@ -117,6 +118,10 @@ class _DiscoverState extends State<Discover> {
final server = _genericSearchTerm?.isValidMatrixId ?? false
? _genericSearchTerm.domain
: widget.server;
if (_lastServer != server) {
_lastServer = server;
_publicRoomsResponse = null;
}
_publicRoomsResponse ??= Matrix.of(context)
.client
.searchPublicRooms(

@ -61,7 +61,7 @@ class _SettingsState extends State<Settings> {
void logoutAction(BuildContext context) async {
if (await showOkCancelAlertDialog(
context: context,
title: L10n.of(context).areYouSure,
title: L10n.of(context).areYouSureYouWantToLogout,
) ==
OkCancelResult.cancel) {
return;

Loading…
Cancel
Save