diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2024-07-18 14:19:52 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2024-07-18 14:19:52 +0100 |
| commit | 580756e0b4bec3f24e6d25ab5bc7ed4536325d17 (patch) | |
| tree | 37227f988fe7b5090ca7e3afb9145da019ff07f9 | |
| parent | e4441f7f5176d039cd59214ab987c6c7ad779ff2 (diff) | |
fix(fetch): get profiles of fresh contributors
rather than ending the loop without fetching them
| -rw-r--r-- | src/client.rs | 5 |
1 files changed, 4 insertions, 1 deletions
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 { | |||
| 531 | ) | 531 | ) |
| 532 | .await?; | 532 | .await?; |
| 533 | 533 | ||
| 534 | if fresh_coordinates.is_empty() && fresh_proposal_roots.is_empty() { | 534 | if fresh_coordinates.is_empty() |
| 535 | && fresh_proposal_roots.is_empty() | ||
| 536 | && fresh_profiles.is_empty() | ||
| 537 | { | ||
| 535 | break; | 538 | break; |
| 536 | } | 539 | } |
| 537 | } | 540 | } |