From: Ariadne Conill Date: Fri, 18 Oct 2019 03:26:50 +0000 (+0000) Subject: object: containment: don't try to contain ostatus objects X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=bf2107743ffcd3b7b9c32c49242f1dfd89dcfdb6;p=akkoma object: containment: don't try to contain ostatus objects --- diff --git a/lib/pleroma/object/containment.ex b/lib/pleroma/object/containment.ex index f077a9f32..cd8623821 100644 --- a/lib/pleroma/object/containment.ex +++ b/lib/pleroma/object/containment.ex @@ -57,7 +57,9 @@ defmodule Pleroma.Object.Containment do id_uri = URI.parse(id) other_uri = URI.parse(other_id) - if id_uri.host == other_uri.host do + # We explicitly allow 'tag' URIs through, due to legacy OStatus objects + # being present in the ActivityPub network. + if id_uri.host == other_uri.host || other_uri.scheme == "tag" do :ok else :error