From 7094c4e3c5060281d49ea5c3fea91dbef207c5d3 Mon Sep 17 00:00:00 2001 From: komodo Date: Wed, 12 Mar 2025 05:18:53 -0400 Subject: [PATCH] fix sync summary count ok --- bin/core/src/api/read/sync.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/core/src/api/read/sync.rs b/bin/core/src/api/read/sync.rs index e80f0529a..5db3a987c 100644 --- a/bin/core/src/api/read/sync.rs +++ b/bin/core/src/api/read/sync.rs @@ -138,7 +138,9 @@ impl Resolve for GetResourceSyncsSummary { .syncing { res.syncing += 1; + continue; } + res.ok += 1; } Ok(res)