Commit 5a4563c1 authored by Leonardo Aramaki's avatar Leonardo Aramaki

Remove unused param

parent 82cd4ae5
...@@ -172,10 +172,9 @@ class ChatRoomPresenter @Inject constructor(private val view: ChatRoomView, ...@@ -172,10 +172,9 @@ class ChatRoomPresenter @Inject constructor(private val view: ChatRoomView,
* @param roomType The current room type. * @param roomType The current room type.
* @param roomName The name of the current room. * @param roomName The name of the current room.
* @param messageId The id of the message to make citation for. * @param messageId The id of the message to make citation for.
* @param text The actual message to send along with the citation.
* @param mentionAuthor true means the citation is a reply otherwise it's a quote. * @param mentionAuthor true means the citation is a reply otherwise it's a quote.
*/ */
fun citeMessage(roomType: String, roomName: String, messageId: String, text: String, mentionAuthor: Boolean) { fun citeMessage(roomType: String, roomName: String, messageId: String, mentionAuthor: Boolean) {
launchUI(strategy) { launchUI(strategy) {
val message = messagesRepository.getById(messageId) val message = messagesRepository.getById(messageId)
val me = client.me() //TODO: Cache this and use an interactor val me = client.me() //TODO: Cache this and use an interactor
......
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