Rather don't expect join to always return the right context.

This commit is contained in:
JC Brand 2016-12-09 19:15:16 +00:00
parent 0bcf61389f
commit c16dac1453

View File

@ -370,7 +370,8 @@
this.$el.find('.chat-content').on('scroll', this.markScrolled.bind(this));
this.getRoomFeatures().always(function () {
that.join().fetchMessages();
that.join();
that.fetchMessages();
converse.emit('chatRoomOpened', that);
});
},