use the same typo in both saving disco and reading disco
This commit is contained in:
parent
cf5ca27a06
commit
6f1a4494eb
|
@ -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)));
|
||||
|
|
Loading…
Reference in New Issue