[Xmpp4js-commit] SF.net SVN: xmpp4js: [704] trunk/src/main/javascript/chat/ChatManager.js
Status: Beta
Brought to you by:
h-iverson
From: <h-i...@us...> - 2008-05-07 03:01:28
|
Revision: 704 http://xmpp4js.svn.sourceforge.net/xmpp4js/?rev=704&view=rev Author: h-iverson Date: 2008-05-06 20:01:32 -0700 (Tue, 06 May 2008) Log Message: ----------- accept untyped messages (default = normal) Modified Paths: -------------- trunk/src/main/javascript/chat/ChatManager.js Modified: trunk/src/main/javascript/chat/ChatManager.js =================================================================== --- trunk/src/main/javascript/chat/ChatManager.js 2008-03-28 06:18:09 UTC (rev 703) +++ trunk/src/main/javascript/chat/ChatManager.js 2008-05-07 03:01:32 UTC (rev 704) @@ -83,7 +83,7 @@ */ _handleMessageReceived : function( messagePacket ) { - if( messagePacket.getType() != "normal" && messagePacket.getType() != "chat" ) { + if( messagePacket.getType() != "" && messagePacket.getType() != "normal" && messagePacket.getType() != "chat" ) { return; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |