Quantcast
Channel: Ignite Realtime: Message List
Viewing all articles
Browse latest Browse all 12000

Re: Openfire 3.7.1 - Emojis in MUC kill chat connection

$
0
0

The better work around for this issue should modifying MXParser.java file, especially the Line 378/379:

 

                               ((codePoint >= 0x20) && (codePoint <= 0xD7FF)) ||

                               ((codePoint >= 0xE000) && (codePoint <= 0xFFFD)) ||

 

Merge the two conditions into one condition:

 

                                ((codePoint >= 0x20) && (codePoint <= 0xFFFD)) ||


Viewing all articles
Browse latest Browse all 12000

Trending Articles