Commit 928f5bbf authored by Leonardo Aramaki's avatar Leonardo Aramaki

Remove unneeded curly braces from string template

parent 791ad5b3
...@@ -232,9 +232,9 @@ class ChatRoomPresenter @Inject constructor(private val view: ChatRoomView, ...@@ -232,9 +232,9 @@ class ChatRoomPresenter @Inject constructor(private val view: ChatRoomView,
is RoomType.Custom -> "custom" //TODO: put appropriate callback string here. is RoomType.Custom -> "custom" //TODO: put appropriate callback string here.
} }
view.showReplyingAction( view.showReplyingAction(
user, username = user,
"[ ](${serverUrl}/${room}/${roomName}?msg=${id}) ${mention} ", replyMarkdown = "[ ]($serverUrl/$room/$roomName?msg=$id) $mention ",
m.message quotedMessage = m.message
) )
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment