Change summary
src/main/java/eu/siacs/conversations/entities/ServiceDiscoveryResult.java | 3
1 file changed, 2 insertions(+), 1 deletion(-)
Detailed changes
@@ -53,6 +53,7 @@ public class ServiceDiscoveryResult {
}
public Identity(final JSONObject o) {
+
this(
o.optString("category", null),
o.optString("type", null),
@@ -145,7 +146,7 @@ public class ServiceDiscoveryResult {
this.hash = hash;
this.ver = ver;
- JSONArray identities = o.optJSONArray("identities");
+ JSONArray identities = o.optJSONArray("identites");
if (identities != null) {
for (int i = 0; i < identities.length(); i++) {
this.identities.add(new Identity(identities.getJSONObject(i)));