ну зато хуйню нашел.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user