Skip to content

Commit 2657611

Browse files
committed
Change default IM type to "text/plain".
1 parent 2829d33 commit 2657611

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/client/src/js/Phone.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -948,7 +948,7 @@ function createChat(calleeName) {
948948
$('#chat' + calleeNameId + ' .messageSend').click(function () {
949949
var fullCalleeName = $(this).parent().attr('fullCalleeName'); //parse id of current chatBox, take away chat word from the beginning
950950
var messageText = $(this).prev().val(); //parse text from input
951-
sendMessage(calleeName, messageText, 'message/cpim'); //send message
951+
sendMessage(calleeName, messageText, 'text/plain'); //send message
952952
$(this).prev().val(''); //clear message input
953953
});
954954

0 commit comments

Comments
 (0)