Transmogrifier: Don't modify attachments for chats.
This commit is contained in:
parent
d0bf8cfb8f
commit
03529f6a05
|
@ -1114,6 +1114,9 @@ def add_attributed_to(object) do
|
||||||
Map.put(object, "attributedTo", attributed_to)
|
Map.put(object, "attributedTo", attributed_to)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# TODO: Revisit this
|
||||||
|
def prepare_attachments(%{"type" => "ChatMessage"} = object), do: object
|
||||||
|
|
||||||
def prepare_attachments(object) do
|
def prepare_attachments(object) do
|
||||||
attachments =
|
attachments =
|
||||||
object
|
object
|
||||||
|
|
|
@ -54,6 +54,8 @@ test "it posts a chat message" do
|
||||||
|
|
||||||
assert Chat.get(author.id, recipient.ap_id)
|
assert Chat.get(author.id, recipient.ap_id)
|
||||||
assert Chat.get(recipient.id, author.ap_id)
|
assert Chat.get(recipient.id, author.ap_id)
|
||||||
|
|
||||||
|
assert :ok == Pleroma.Web.Federator.perform(:publish, activity)
|
||||||
end
|
end
|
||||||
|
|
||||||
test "it reject messages over the local limit" do
|
test "it reject messages over the local limit" do
|
||||||
|
|
Loading…
Reference in New Issue