mirror of https://github.com/LemmyNet/lemmy.git
Fix bug in whitelist implementation
parent
b1b97db11a
commit
a49bd1d42a
|
@ -39,7 +39,7 @@ where
|
|||
let json = serde_json::to_string(&activity)?;
|
||||
debug!("Sending activitypub activity {} to {:?}", json, to);
|
||||
for t in to {
|
||||
if is_apub_id_valid(&t) {
|
||||
if !is_apub_id_valid(&t) {
|
||||
debug!("Not sending activity to {} (invalid or blacklisted)", t);
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue