forked from AkkomaGang/akkoma
ConversationView: fix formatting
This commit is contained in:
parent
0552a08dfd
commit
d63ec02f31
1 changed files with 6 additions and 5 deletions
|
@ -35,7 +35,8 @@ def render("participation.json", %{participation: participation, for: user}) do
|
|||
activity = Activity.get_by_id_with_object(last_activity_id)
|
||||
|
||||
# Conversations return all users except current user when current user is not only participant
|
||||
users = if length(participation.recipients) > 1 do
|
||||
users =
|
||||
if length(participation.recipients) > 1 do
|
||||
Enum.reject(participation.recipients, &(&1.id == user.id))
|
||||
else
|
||||
participation.recipients
|
||||
|
|
Loading…
Reference in a new issue