aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/chat_channel.ex
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2020-07-23 15:08:30 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2020-07-23 15:08:30 +0300
commit9ea51a6de516b37341a9566d11d0110c2d87c1b6 (patch)
tree8d06667accd928ff0dc0fb1d85be3d6b2e99ccd7 /lib/pleroma/web/chat_channel.ex
parent6f5f7af607518b6f67df68bab9bf76142e9a622c (diff)
downloadpleroma-9ea51a6de516b37341a9566d11d0110c2d87c1b6.tar.gz
[#2791] AccountView: renamed `:force` option to `:skip_visibility_check`.
Diffstat (limited to 'lib/pleroma/web/chat_channel.ex')
-rw-r--r--lib/pleroma/web/chat_channel.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/chat_channel.ex b/lib/pleroma/web/chat_channel.ex
index 08d0e80f9..3b1469c19 100644
--- a/lib/pleroma/web/chat_channel.ex
+++ b/lib/pleroma/web/chat_channel.ex
@@ -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})