fluffychat merge - resolve conflicts
This commit is contained in:
commit
816fe43d3e
3 changed files with 5 additions and 3 deletions
|
|
@ -70,7 +70,7 @@ class EventVideoPlayerState extends State<EventVideoPlayer> {
|
|||
autoInitialize: true,
|
||||
);
|
||||
}
|
||||
} on Exception catch (e) {
|
||||
} on IOException catch (e) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
SnackBar(
|
||||
content: Text(e.toLocalizedString(context)),
|
||||
|
|
|
|||
|
|
@ -66,7 +66,9 @@ extension LocalizedExceptionExtension on Object {
|
|||
supportedVersions,
|
||||
);
|
||||
}
|
||||
if (this is SocketException || this is SyncConnectionException) {
|
||||
if (this is IOException ||
|
||||
this is SocketException ||
|
||||
this is SyncConnectionException) {
|
||||
return L10n.of(context)!.noConnectionToTheServer;
|
||||
}
|
||||
if (this is String) return toString();
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ dependencies:
|
|||
git:
|
||||
url: https://github.com/pangeachat/matrix-dart-sdk.git # repo
|
||||
ref: main # branch
|
||||
# matrix: ^0.29.13
|
||||
# matrix: ^0.30.0
|
||||
# Pangea#
|
||||
native_imaging: ^0.1.1
|
||||
package_info_plus: ^6.0.0
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue