mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 18:17:55 +00:00
Merge branch 'bugfix/ap-uri-user-search' into 'develop'
transmogrifier: do not try to contain origin of something which doesn't have one Closes #340 See merge request pleroma/pleroma!389
This commit is contained in:
commit
9e9b1bd5ea
|
@ -37,6 +37,8 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
|
||||||
@doc """
|
@doc """
|
||||||
Checks that an imported AP object's actor matches the domain it came from.
|
Checks that an imported AP object's actor matches the domain it came from.
|
||||||
"""
|
"""
|
||||||
|
def contain_origin(id, %{"actor" => nil}), do: :error
|
||||||
|
|
||||||
def contain_origin(id, %{"actor" => actor} = params) do
|
def contain_origin(id, %{"actor" => actor} = params) do
|
||||||
id_uri = URI.parse(id)
|
id_uri = URI.parse(id)
|
||||||
actor_uri = URI.parse(get_actor(params))
|
actor_uri = URI.parse(get_actor(params))
|
||||||
|
|
Loading…
Reference in a new issue