Fix inconsistency in serialization of ReconMatchSpecificTopicOperation

This commit is contained in:
Antonin Delpeuch 2018-08-12 15:48:17 +01:00
parent 4013c0b8c5
commit b4bcf7a1b6

View File

@ -68,7 +68,7 @@ public class ReconMatchSpecificTopicOperation extends EngineDependentMassCellOpe
JSONObject match = obj.getJSONObject("match");
JSONArray types = obj.getJSONArray("types");
JSONArray types = match.getJSONArray("types");
String[] typeIDs = new String[types.length()];
for (int i = 0; i < typeIDs.length; i++) {
typeIDs[i] = types.getString(i);