forked from AkkomaGang/akkoma
activitypub utils: fix recipient check when the message is unaddressed (mastodon)
This commit is contained in:
parent
72031e80d7
commit
f6cb963df2
1 changed files with 5 additions and 0 deletions
|
@ -37,6 +37,11 @@ def recipient_in_message(ap_id, params) do
|
|||
recipient_in_collection(ap_id, params["bcc"]) ->
|
||||
true
|
||||
|
||||
# if the message is unaddressed at all, then assume it is directly addressed
|
||||
# to the recipient
|
||||
!params["to"] && !params["cc"] && !params["bto"] && !params["bcc"] ->
|
||||
true
|
||||
|
||||
true ->
|
||||
false
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue