forked from AkkomaGang/akkoma
StreamerView: Actually send Chats, not ChatMessages.
This commit is contained in:
parent
863c02b25d
commit
767ce8b803
2 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@ defmodule Pleroma.Web.PleromaAPI.ChatView do
|
||||||
def render("show.json", %{chat: %Chat{} = chat} = opts) do
|
def render("show.json", %{chat: %Chat{} = chat} = opts) do
|
||||||
recipient = User.get_cached_by_ap_id(chat.recipient)
|
recipient = User.get_cached_by_ap_id(chat.recipient)
|
||||||
|
|
||||||
last_message = Chat.last_message_for_chat(chat)
|
last_message = opts[:message] || Chat.last_message_for_chat(chat)
|
||||||
|
|
||||||
%{
|
%{
|
||||||
id: chat.id |> to_string(),
|
id: chat.id |> to_string(),
|
||||||
|
|
|
@ -16,9 +16,9 @@ def render("chat_update.json", object, user, recipients) do
|
||||||
chat = Chat.get(user.id, hd(recipients -- [user.ap_id]))
|
chat = Chat.get(user.id, hd(recipients -- [user.ap_id]))
|
||||||
|
|
||||||
representation =
|
representation =
|
||||||
Pleroma.Web.PleromaAPI.ChatMessageView.render(
|
Pleroma.Web.PleromaAPI.ChatView.render(
|
||||||
"show.json",
|
"show.json",
|
||||||
%{object: object, chat: chat}
|
%{message: object, chat: chat}
|
||||||
)
|
)
|
||||||
|
|
||||||
%{
|
%{
|
||||||
|
|
Loading…
Reference in a new issue