diff options
m--------- | LibMatrix | 0 | ||||
-rw-r--r-- | MatrixUtils.Web/Pages/Index.razor | 4 | ||||
m--------- | MxApiExtensions | 0 |
3 files changed, 3 insertions, 1 deletions
diff --git a/LibMatrix b/LibMatrix -Subproject c7b7dbe3d929d787fe0c76015082a117c422227 +Subproject f41b6e5ec431c88bc1d94e4832d8ba49ddc4200 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 -Subproject 3c0c7b2e56a24bda06b8c567e5608546898c99d +Subproject 2d21596eec41cf1669f8064278b3273dc4f4c36 |