mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 01:18:08 +01:00
Fix inability to create ActivityPub messages
This commit is contained in:
parent
7bb89c5dfd
commit
6f7e917f32
1 changed files with 4 additions and 0 deletions
|
@ -15,6 +15,10 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
|
|||
|
||||
private
|
||||
|
||||
def reject_pattern?
|
||||
Setting.reject_pattern.present? && @object['content']&.match?(Setting.reject_pattern)
|
||||
end
|
||||
|
||||
def create_status
|
||||
return reject_payload! if unsupported_object_type? || non_matching_uri_hosts?(@account.uri, object_uri) || tombstone_exists? || !related_to_local_activity? || reject_pattern?
|
||||
|
||||
|
|
Loading…
Reference in a new issue