upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2024-07-18 14:19:52 +0100
committerDanConwayDev <DanConwayDev@protonmail.com>2024-07-18 14:19:52 +0100
commit580756e0b4bec3f24e6d25ab5bc7ed4536325d17 (patch)
tree37227f988fe7b5090ca7e3afb9145da019ff07f9 /src
parente4441f7f5176d039cd59214ab987c6c7ad779ff2 (diff)
fix(fetch): get profiles of fresh contributors
rather than ending the loop without fetching them
Diffstat (limited to 'src')
-rw-r--r--src/client.rs5
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 }