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 --- MatrixUtils.Web/Pages/Index.razor | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'MatrixUtils.Web/Pages/Index.razor') 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(); } -- cgit 1.4.1