From d8aabb387df588eec15a77acd498678459710b63 Mon Sep 17 00:00:00 2001 From: gil Date: Mon, 3 Jun 2024 00:32:53 -0500 Subject: [PATCH] Add a new TODO --- src/manip.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/manip.rs b/src/manip.rs index 60d61a7..9a48b61 100644 --- a/src/manip.rs +++ b/src/manip.rs @@ -119,6 +119,8 @@ impl MergedLimitList { for item in self.hostmap.into_iter() { let (block_trust, mute_trust) = item.1.normalize(self.trusts); + // TODO What should the behavior be when an instance is blocked or + // muted by most instances, but neither rises above the threshold? if block_trust >= block_thresh { block_output.push_str(&(item.0.clone() + "\n")); }