feat: New Public room bottom sheet

This commit is contained in:
Krille Fear 2021-11-14 13:56:36 +01:00
commit e964d5b628
4 changed files with 154 additions and 40 deletions

View file

@ -50,6 +50,7 @@ extension LocalizedExceptionExtension on Object {
if (this is MatrixConnectionException || this is SocketException) {
return L10n.of(context).noConnectionToTheServer;
}
if (this is String) return toString();
if (this is UiaException) return toString();
Logs().w('Something went wrong: ', this);
return L10n.of(context).oopsSomethingWentWrong;