Commit 398823fc authored by Leonardo Aramaki's avatar Leonardo Aramaki

Remove mistaken param

parent 59a8a6e5
......@@ -118,8 +118,8 @@ class ChatRoomAdapter(private val roomType: String,
messageViewModel.apply {
when (item.itemId) {
R.id.action_menu_msg_delete -> presenter.deleteMessage(roomId, id)
R.id.action_menu_msg_quote -> presenter.citeMessage(roomType, roomName, id, "", false)
R.id.action_menu_msg_reply -> presenter.citeMessage(roomType, roomName, id, "", true)
R.id.action_menu_msg_quote -> presenter.citeMessage(roomType, roomName, id, false)
R.id.action_menu_msg_reply -> presenter.citeMessage(roomType, roomName, id, true)
R.id.action_menu_msg_copy -> presenter.copyMessage(id)
R.id.action_menu_msg_edit -> presenter.editMessage(roomId, id, getOriginalMessage())
R.id.action_menu_msg_pin_unpin -> {
......
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