Commit 65a25a4f authored by Filipe de Lima Brito's avatar Filipe de Lima Brito

Fixing indentation.

parent 29a51143
...@@ -60,8 +60,8 @@ class ChatRoomPresenter @Inject constructor(private val view: ChatRoomView, ...@@ -60,8 +60,8 @@ class ChatRoomPresenter @Inject constructor(private val view: ChatRoomView,
ex.message?.let { ex.message?.let {
view.showMessage(it) view.showMessage(it)
}.ifNull { }.ifNull {
view.showGenericErrorMessage() view.showGenericErrorMessage()
} }
} finally { } finally {
view.hideLoading() view.hideLoading()
} }
......
...@@ -119,8 +119,8 @@ class ChatRoomAdapter(private val serverUrl: String) : RecyclerView.Adapter<Chat ...@@ -119,8 +119,8 @@ class ChatRoomAdapter(private val serverUrl: String) : RecyclerView.Adapter<Chat
drawee.setVisible(true) drawee.setVisible(true)
imageUnknownAvatar.setVisible(false) imageUnknownAvatar.setVisible(false)
}.ifNull { }.ifNull {
drawee.setVisible(false) drawee.setVisible(false)
imageUnknownAvatar.setVisible(true) imageUnknownAvatar.setVisible(true)
} }
} }
} }
\ No newline at end of file
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