Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into frontend-admin-api
[akkoma] / lib / pleroma / web / chat_channel.ex
index 08d0e80f9d1d39a17fc5944fcebc4fffb141c03a..3b1469c19a042d31b030d37d6761ed312f7b3558 100644 (file)
@@ -24,7 +24,7 @@ defmodule Pleroma.Web.ChatChannel do
 
     if String.length(text) in 1..Pleroma.Config.get([:instance, :chat_limit]) do
       author = User.get_cached_by_nickname(user_name)
-      author_json = AccountView.render("show.json", user: author, force: true)
+      author_json = AccountView.render("show.json", user: author, skip_visibility_check: true)
 
       message = ChatChannelState.add_message(%{text: text, author: author_json})