We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dec6e3a commit 16c3b09Copy full SHA for 16c3b09
src/self_reporting.rs
@@ -124,7 +124,7 @@ async fn get_contact_stats(context: &Context) -> Result<Vec<ContactStat>> {
124
let mut has_bot = false;
125
let mut current_verifier_id = contact.id;
126
127
- while current_verifier_id != ContactId::SELF {
+ while current_verifier_id != ContactId::SELF && transitive_chain < 100 {
128
current_verifier_id = match verified_by_map.get(¤t_verifier_id) {
129
Some(id) => *id,
130
None => {
0 commit comments