From 580756e0b4bec3f24e6d25ab5bc7ed4536325d17 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Thu, 18 Jul 2024 14:19:52 +0100 Subject: fix(fetch): get profiles of fresh contributors rather than ending the loop without fetching them --- src/client.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/client.rs') diff --git a/src/client.rs b/src/client.rs index c075793..4202a8e 100644 --- a/src/client.rs +++ b/src/client.rs @@ -531,7 +531,10 @@ impl Connect for Client { ) .await?; - if fresh_coordinates.is_empty() && fresh_proposal_roots.is_empty() { + if fresh_coordinates.is_empty() + && fresh_proposal_roots.is_empty() + && fresh_profiles.is_empty() + { break; } } -- cgit v1.2.3