mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-12-25 23:12:37 +01:00
Merge branch 'krille/report-sync-status-error' into 'main'
fix: Report sync status error See merge request famedly/fluffychat!573
This commit is contained in:
commit
96b0c025b8
@ -22,6 +22,7 @@ class SpacesBottomBar extends StatelessWidget {
|
|||||||
return Material(
|
return Material(
|
||||||
color: Theme.of(context).appBarTheme.backgroundColor,
|
color: Theme.of(context).appBarTheme.backgroundColor,
|
||||||
elevation: 6,
|
elevation: 6,
|
||||||
|
child: SafeArea(
|
||||||
child: StreamBuilder<Object>(
|
child: StreamBuilder<Object>(
|
||||||
stream: Matrix.of(context).client.onSync.stream.where((sync) =>
|
stream: Matrix.of(context).client.onSync.stream.where((sync) =>
|
||||||
(sync.rooms?.join?.values?.any((r) =>
|
(sync.rooms?.join?.values?.any((r) =>
|
||||||
@ -45,7 +46,8 @@ class SpacesBottomBar extends StatelessWidget {
|
|||||||
items: [
|
items: [
|
||||||
SalomonBottomBarItem(
|
SalomonBottomBarItem(
|
||||||
icon: const Icon(CupertinoIcons.chat_bubble_2),
|
icon: const Icon(CupertinoIcons.chat_bubble_2),
|
||||||
activeIcon: const Icon(CupertinoIcons.chat_bubble_2_fill),
|
activeIcon:
|
||||||
|
const Icon(CupertinoIcons.chat_bubble_2_fill),
|
||||||
title: Text(L10n.of(context).allChats),
|
title: Text(L10n.of(context).allChats),
|
||||||
),
|
),
|
||||||
...controller.spaces
|
...controller.spaces
|
||||||
@ -73,6 +75,7 @@ class SpacesBottomBar extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
}),
|
}),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -290,11 +290,19 @@ class MatrixState extends State<Matrix> with WidgetsBindingObserver {
|
|||||||
utf8.decode((await http.get(Uri.parse('config.json'))).bodyBytes);
|
utf8.decode((await http.get(Uri.parse('config.json'))).bodyBytes);
|
||||||
final configJson = json.decode(configJsonString);
|
final configJson = json.decode(configJsonString);
|
||||||
AppConfig.loadFromJson(configJson);
|
AppConfig.loadFromJson(configJson);
|
||||||
} catch (e, _) {
|
} on FormatException catch (_) {
|
||||||
|
Logs().v('[ConfigLoader] config.json not found');
|
||||||
|
} catch (e) {
|
||||||
Logs().v('[ConfigLoader] config.json not found', e);
|
Logs().v('[ConfigLoader] config.json not found', e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void _reportSyncError(SyncStatusUpdate update) =>
|
||||||
|
SentryController.captureException(
|
||||||
|
update.error.exception,
|
||||||
|
update.error.stackTrace,
|
||||||
|
);
|
||||||
|
|
||||||
void _registerSubs(String name) {
|
void _registerSubs(String name) {
|
||||||
final c = getClientByName(name);
|
final c = getClientByName(name);
|
||||||
if (c == null) {
|
if (c == null) {
|
||||||
@ -302,6 +310,9 @@ class MatrixState extends State<Matrix> with WidgetsBindingObserver {
|
|||||||
'Attempted to register subscriptions for non-existing client $name');
|
'Attempted to register subscriptions for non-existing client $name');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
c.onSyncStatus.stream
|
||||||
|
.where((s) => s.status == SyncStatus.error)
|
||||||
|
.listen(_reportSyncError);
|
||||||
onKeyVerificationRequestSub[name] ??= c.onKeyVerificationRequest.stream
|
onKeyVerificationRequestSub[name] ??= c.onKeyVerificationRequest.stream
|
||||||
.listen((KeyVerification request) async {
|
.listen((KeyVerification request) async {
|
||||||
var hidPopup = false;
|
var hidPopup = false;
|
||||||
|
@ -364,7 +364,7 @@ packages:
|
|||||||
name: fluffybox
|
name: fluffybox
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.3.1"
|
version: "0.3.2"
|
||||||
flutter:
|
flutter:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description: flutter
|
description: flutter
|
||||||
@ -782,7 +782,7 @@ packages:
|
|||||||
description:
|
description:
|
||||||
path: "."
|
path: "."
|
||||||
ref: "krille/idb"
|
ref: "krille/idb"
|
||||||
resolved-ref: "3045005bfb7d60d7bc9d1e5b30f42e072a60a682"
|
resolved-ref: "1714f0a35f2558a6fb56bdf6940cf2a13cdcd5dd"
|
||||||
url: "https://gitlab.com/famedly/company/frontend/famedlysdk.git"
|
url: "https://gitlab.com/famedly/company/frontend/famedlysdk.git"
|
||||||
source: git
|
source: git
|
||||||
version: "0.7.0-nullsafety.6"
|
version: "0.7.0-nullsafety.6"
|
||||||
|
@ -2,4 +2,4 @@
|
|||||||
flutter config --enable-web
|
flutter config --enable-web
|
||||||
flutter clean
|
flutter clean
|
||||||
flutter pub get
|
flutter pub get
|
||||||
flutter build web --release --verbose
|
flutter build web --release --verbose --source-maps
|
||||||
|
Loading…
Reference in New Issue
Block a user