Add a new TODO

This commit is contained in:
gil 2024-06-03 00:32:53 -05:00
parent 5c0dfa367e
commit d8aabb387d

View file

@ -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"));
}