forked from AkkomaGang/akkoma
Web.ActivityPub.ActivityPub: Fix check_remote_limit/1 against activities with content: nil
This commit is contained in:
parent
6383fa3a5d
commit
15aa45ae8a
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ defp check_actor_is_active(actor) do
|
|||
end
|
||||
end
|
||||
|
||||
defp check_remote_limit(%{"object" => %{"content" => content}}) do
|
||||
defp check_remote_limit(%{"object" => %{"content" => content}}) when not is_nil(content) do
|
||||
limit = Pleroma.Config.get([:instance, :remote_limit])
|
||||
String.length(content) <= limit
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue