X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fweb%2Fchat_channel.ex;h=48a3553bf0447192f275683ef048d3d331d41a0e;hb=ce31f3a922cab93d13c50a2fcec0f383631a13d0;hp=c2277d73dd2da2933a9924d5a963be82ca95d16a;hpb=69f1024bb0c6fef509cb38aabcbb1482055cde05;p=akkoma diff --git a/lib/pleroma/web/chat_channel.ex b/lib/pleroma/web/chat_channel.ex index c2277d73d..48a3553bf 100644 --- a/lib/pleroma/web/chat_channel.ex +++ b/lib/pleroma/web/chat_channel.ex @@ -1,6 +1,7 @@ defmodule Pleroma.Web.ChatChannel do use Phoenix.Channel alias Pleroma.Web.ChatChannel.ChatChannelState + alias Pleroma.User def join("chat:public", _message, socket) do send(self(), :after_join) @@ -12,10 +13,10 @@ defmodule Pleroma.Web.ChatChannel do {:noreply, socket} end - def handle_in("new_msg", %{"text" => text}, socket) do - author = socket.assigns[:user] + def handle_in("new_msg", %{"text" => text}, %{assigns: %{user_name: user_name}} = socket) do + author = User.get_cached_by_nickname(user_name) author = Pleroma.Web.MastodonAPI.AccountView.render("account.json", user: author) - message= ChatChannelState.add_message(%{text: text, author: author}) + message = ChatChannelState.add_message(%{text: text, author: author}) broadcast! socket, "new_msg", message {:noreply, socket} @@ -23,7 +24,6 @@ defmodule Pleroma.Web.ChatChannel do end defmodule Pleroma.Web.ChatChannel.ChatChannelState do - use Agent @max_messages 20 def start_link do