Make sure we're storing the display JID as Unicode

This commit is contained in:
Sam Whited 2014-11-12 16:19:16 -05:00
parent e555fe4b03
commit 2222483b42
1 changed files with 3 additions and 2 deletions

View File

@ -108,11 +108,12 @@ public final class Jid {
if (resourcepart.isEmpty() || resourcepart.length() > 1023) { if (resourcepart.isEmpty() || resourcepart.length() > 1023) {
throw new InvalidJidException(InvalidJidException.INVALID_PART_LENGTH); throw new InvalidJidException(InvalidJidException.INVALID_PART_LENGTH);
} }
dp = jid.substring(domainpartStart, slashLoc); dp = IDN.toUnicode(jid.substring(domainpartStart, slashLoc), IDN.USE_STD3_ASCII_RULES);
finaljid = finaljid + dp + "/" + rp; finaljid = finaljid + dp + "/" + rp;
} else { } else {
resourcepart = ""; resourcepart = "";
dp = jid.substring(domainpartStart, jid.length()); dp = IDN.toUnicode(jid.substring(domainpartStart, jid.length()),
IDN.USE_STD3_ASCII_RULES);
finaljid = finaljid + dp; finaljid = finaljid + dp;
} }