From 7985743382467843ff604ad46fbd5655f57f28b6 Mon Sep 17 00:00:00 2001 From: Kelrap Date: Mon, 15 Jul 2024 10:02:05 -0400 Subject: [PATCH 1/2] Fix loading issue when space is selected? --- lib/pages/chat_list/space_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pages/chat_list/space_view.dart b/lib/pages/chat_list/space_view.dart index f3f9749a1..cf5913a25 100644 --- a/lib/pages/chat_list/space_view.dart +++ b/lib/pages/chat_list/space_view.dart @@ -126,7 +126,7 @@ class _SpaceViewState extends State { try { final response = await client.getSpaceHierarchy( activeSpaceId, - maxDepth: 1, + maxDepth: 2, from: prevBatch, ); From 899a128118cbb6b46ab612515988c6a7d8277083 Mon Sep 17 00:00:00 2001 From: Kelrap Date: Tue, 16 Jul 2024 12:23:40 -0400 Subject: [PATCH 2/2] Fix loading issue for realsies --- lib/pages/chat_list/space_view.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/pages/chat_list/space_view.dart b/lib/pages/chat_list/space_view.dart index cf5913a25..ef938c235 100644 --- a/lib/pages/chat_list/space_view.dart +++ b/lib/pages/chat_list/space_view.dart @@ -126,8 +126,11 @@ class _SpaceViewState extends State { try { final response = await client.getSpaceHierarchy( activeSpaceId, - maxDepth: 2, + maxDepth: 1, from: prevBatch, + // #Pangea + limit: 100, + // Pangea# ); if (prevBatch != null) {