You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When mapping Matrix rooms to XMPP, certain characters are not valid in JIDs and must be escaped. The default mechanism for that is XEP-0106, which also provides a list of which characters to escape:
U+0022 (")
U+0026 (&)
U+0027 (')
U+002F (/)
U+003A (:)
U+003C (<)
U+003E (>)
U+0040 (@)
Please convert those into the respective escaped hexadecimal notation, i.e. " --> \22
The text was updated successfully, but these errors were encountered:
When mapping Matrix rooms to XMPP, certain characters are not valid in JIDs and must be escaped. The default mechanism for that is XEP-0106, which also provides a list of which characters to escape:
Please convert those into the respective escaped hexadecimal notation, i.e.
"
-->\22
The text was updated successfully, but these errors were encountered: