all repos — honk @ dccfd701f6e16544fe5ca0a967d29a89a4ac38a2

my fork of honk

don't want to continue the unknown match
Ted Unangst tedu@tedunangst.com
Tue, 19 Dec 2023 13:30:20 -0500
commit

dccfd701f6e16544fe5ca0a967d29a89a4ac38a2

parent

124af7a636026c1dfb7a255eab0465711c1f1415

1 files changed, 6 insertions(+), 3 deletions(-)

jump to
M hfcs.gohfcs.go

@@ -266,9 +266,12 @@ if f.IsAnnounce {

continue } if f.Actor == origin { - if f.OnlyUnknowns && unknownActor(userid, actor) { - ilog.Printf("rejecting unknown actor: %s", actor) - return true + if f.OnlyUnknowns { + if unknownActor(userid, actor) { + ilog.Printf("rejecting unknown actor: %s", actor) + return true + } + continue } ilog.Printf("rejecting actor: %s", actor) return true