object: containment: also allow OStatus object IDs through when comparing origins

This commit is contained in:
Ariadne Conill 2019-10-18 03:56:31 +00:00
parent a177f22e02
commit 7295a05cee
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ defmodule Pleroma.Object.Containment do
id_uri = URI.parse(id)
actor_uri = URI.parse(get_actor(params))
if id_uri.host == actor_uri.host do
if id_uri.host == actor_uri.host || id_uri.scheme == "tag" do
:ok
else
:error