ну зато хуйню нашел.

This commit is contained in:
prime
2026-04-29 19:21:53 +10:00
parent d9cbadbbb7
commit c6ea5d6dcf
2 changed files with 8 additions and 1 deletions
+7 -1
View File
@@ -30,7 +30,13 @@ class _CallsTabState extends State<CallsTab> {
}
final callsModule = CallsModule(api);
final calls = await callsModule.fetchHistory(p.id, p.id);
List<CallLogEntry> calls;
try {
calls = await callsModule.fetchHistory(p.id, p.id);
} catch (e) {
if (mounted) setState(() => _isLoading = false);
return;
}
final List<CallLogEntry> grouped = [];
for (final call in calls) {
@@ -1255,6 +1255,7 @@ class _ChatListScreenState extends State<ChatListScreen>
});
},
child: Stack(
clipBehavior: Clip.hardEdge,
children: [
AnimatedPositioned(
duration: _navDragging