Commit e246335b authored by JC Brand's avatar JC Brand

Bugfix. JIDs not shown in chatrooms. fixes #282

parent 03c92b44
......@@ -1077,7 +1077,7 @@
msg_time = moment(msg_dict.time) || moment,
text = msg_dict.message,
match = text.match(/^\/(.*?)(?: (.*))?$/),
fullname = this.model.get('fullname'), // XXX Perhaps always use model's?
fullname = this.model.get('fullname') || msg_dict.fullname,
extra_classes = msg_dict.delayed && 'delayed' || '',
template, username;
......
......@@ -4,7 +4,7 @@ Changelog
0.8.4 (Unreleased)
------------------
* #234 Cannot send/receive messages when contact JIDs have mixed case. [jcbrand]
* #282 JIDs or nicknames not shown in chat rooms. [jcbrand]
0.8.4 (2014-11-15)
------------------
......
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