1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-12-08 14:11:07 +01:00

Move xml-not-well-formed (RFC 3920) condition handling to StreamError

Fixes SMACK-842.
This commit is contained in:
asokolov 2018-11-14 13:36:10 +03:00 committed by Florian Schmaus
parent 5f05da2f77
commit 2900c5ae23
3 changed files with 23 additions and 5 deletions

View file

@ -385,11 +385,6 @@ public class StanzaError extends AbstractError implements ExtensionElement {
}
public static Condition fromString(String string) {
// Backwards compatibility for older implementations still using RFC 3920. RFC 6120
// changed 'xml-not-well-formed' to 'not-well-formed'.
if ("xml-not-well-formed".equals(string)) {
string = "not-well-formed";
}
string = string.replace('-', '_');
Condition condition = null;
try {

View file

@ -186,6 +186,11 @@ public class StreamError extends AbstractError implements Nonza {
}
public static Condition fromString(String string) {
// Backwards compatibility for older implementations still using RFC 3920. RFC 6120
// changed 'xml-not-well-formed' to 'not-well-formed'.
if ("xml-not-well-formed".equals(string)) {
string = "not-well-formed";
}
string = string.replace('-', '_');
Condition condition = null;
try {