updates #234 Cannot send/receive messages when JIDs have mixed case

This commit is contained in:
JC Brand 2014-11-16 22:23:24 +01:00
parent 35f203ff62
commit 9a84e44db4
2 changed files with 6 additions and 1 deletions

View File

@ -2906,7 +2906,7 @@
var contact_jid, $forwarded, $received, $sent,
msgid = $message.attr('id'),
chatbox, resource, roster_item,
message_from = $message.attr('from');
message_from = $message.attr('from').toLowerCase();
if (message_from === converse.connection.jid) {
// FIXME: Forwarded messages should be sent to specific resources,
// not broadcasted

View File

@ -1,6 +1,11 @@
Changelog
=========
0.8.4 (Unreleased)
------------------
* #234 Cannot send/receive messages when contact JIDs have mixed case. [jcbrand]
0.8.4 (2014-11-15)
------------------