We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2829d33 commit 2657611Copy full SHA for 2657611
client/client/src/js/Phone.js
@@ -948,7 +948,7 @@ function createChat(calleeName) {
948
$('#chat' + calleeNameId + ' .messageSend').click(function () {
949
var fullCalleeName = $(this).parent().attr('fullCalleeName'); //parse id of current chatBox, take away chat word from the beginning
950
var messageText = $(this).prev().val(); //parse text from input
951
- sendMessage(calleeName, messageText, 'message/cpim'); //send message
+ sendMessage(calleeName, messageText, 'text/plain'); //send message
952
$(this).prev().val(''); //clear message input
953
});
954
0 commit comments