mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-02 18:19:30 +01:00
24 lines
798 B
Dart
24 lines
798 B
Dart
import 'package:famedlysdk/famedlysdk.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
|
|
extension LocalizedExceptionExtension on Object {
|
|
String toLocalizedString(BuildContext context) {
|
|
if (this is MatrixException) {
|
|
switch ((this as MatrixException).error) {
|
|
case MatrixError.M_FORBIDDEN:
|
|
return L10n.of(context).noPermission;
|
|
case MatrixError.M_LIMIT_EXCEEDED:
|
|
return L10n.of(context).tooManyRequestsWarning;
|
|
default:
|
|
return (this as MatrixException).errorMessage;
|
|
}
|
|
}
|
|
if (this is MatrixConnectionException) {
|
|
L10n.of(context).noConnectionToTheServer;
|
|
}
|
|
Logs().d('Something went wrong: ', this);
|
|
return L10n.of(context).oopsSomethingWentWrong;
|
|
}
|
|
}
|