-
Notifications
You must be signed in to change notification settings - Fork 553
[FIX] roomid or username required bug #1930
Conversation
Thanks for the PR, but this problem fixes the alert, but you can't chat with the person because there's no "Send" button or the emoji button doesn't work. |
The problem was because the newly created room was not added in the database due to which listeners were not instantiated. I suppose refreshing chat rooms in db before accessing them fixes the issue. I have commited changes for the same. @rafaelks please review. |
@dabbler011 "Send button" still don't show up on new conversations. |
@rafaelks are you sure? As it is working just fine for me. |
@dabbler011 change the following method on
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes pointed out comments.
@leonardoaramaki updated the method. |
Thanks @dabbler011. Testing |
@RocketChat/android
Closes #1912
chatRoom object was instantiated with empty id. So, toDirectMessage() was called with empty id in clickListeners.
Works fine now.