about summary refs log tree commit diff
path: root/MatrixUtils.Web/Pages/Tools/Info/SessionCount.razor
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-05-14 14:15:22 +0200
committerRory& <root@rory.gay>2025-05-14 14:16:19 +0200
commitaafd0ad3560c13f86674498accd57c38fb091b29 (patch)
tree055df16fbeb41fabb9f0aee502fea63068910226 /MatrixUtils.Web/Pages/Tools/Info/SessionCount.razor
parentWIP: reword me later (diff)
downloadMatrixUtils-aafd0ad3560c13f86674498accd57c38fb091b29.tar.xz
Update LibMatrix
Diffstat (limited to 'MatrixUtils.Web/Pages/Tools/Info/SessionCount.razor')
-rw-r--r--MatrixUtils.Web/Pages/Tools/Info/SessionCount.razor2
1 files changed, 1 insertions, 1 deletions
diff --git a/MatrixUtils.Web/Pages/Tools/Info/SessionCount.razor b/MatrixUtils.Web/Pages/Tools/Info/SessionCount.razor

index ce3513b..5c238b3 100644 --- a/MatrixUtils.Web/Pages/Tools/Info/SessionCount.razor +++ b/MatrixUtils.Web/Pages/Tools/Info/SessionCount.razor
@@ -97,7 +97,7 @@ rooms = new ObservableCollection<GenericRoom>(distinctRooms); rooms.CollectionChanged += (sender, args) => StateHasChanged(); - var stateTasks = rooms.Select(async x => (x, await x.GetMembersListAsync(false))).ToAsyncEnumerable(); + var stateTasks = rooms.Select(async x => (x, await x.GetMembersListAsync())).ToAsyncEnumerable(); await foreach (var (room, state) in stateTasks) { roomMembers.Add(room, state);