From 491b0523edcb3dea880372847a683458102c3f42 Mon Sep 17 00:00:00 2001 From: Rory& Date: Tue, 5 Mar 2024 11:21:19 +0100 Subject: Fix homepage progress bar --- LibMatrix | 2 +- MatrixUtils.Web/Pages/Index.razor | 4 +++- MxApiExtensions | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/LibMatrix b/LibMatrix index c7b7dbe..f41b6e5 160000 --- a/LibMatrix +++ b/LibMatrix @@ -1 +1 @@ -Subproject commit c7b7dbe3d929d787fe0c76015082a117c4222278 +Subproject commit f41b6e5ec431c88bc1d94e4832d8ba49ddc42004 diff --git a/MatrixUtils.Web/Pages/Index.razor b/MatrixUtils.Web/Pages/Index.razor index f216488..19c74c3 100644 --- a/MatrixUtils.Web/Pages/Index.razor +++ b/MatrixUtils.Web/Pages/Index.razor @@ -133,10 +133,10 @@ Small collection of tools to do not-so-everyday things. var updateSw = Stopwatch.StartNew(); var tasks = tokens.Select(async token => { await sema.WaitAsync(); - scannedSessions++; if ((!string.IsNullOrWhiteSpace(token.Proxy) && offlineServers.Contains(token.Proxy)) || offlineServers.Contains(token.Homeserver)) { _offlineSessions.Add(token); sema.Release(); + scannedSessions++; return; } @@ -176,9 +176,11 @@ Small collection of tools to do not-so-everyday things. offlineServers.Add(token.Homeserver); } + scannedSessions++; sema.Release(); }).ToList(); await Task.WhenAll(tasks); + scannedSessions = totalSessions; await base.OnInitializedAsync(); } diff --git a/MxApiExtensions b/MxApiExtensions index 3c0c7b2..2d21596 160000 --- a/MxApiExtensions +++ b/MxApiExtensions @@ -1 +1 @@ -Subproject commit 3c0c7b2e56a24bda06b8c567e5608546898c99d7 +Subproject commit 2d21596eec41cf1669f8064278b3273dc4f4c366 -- cgit 1.5.1