fixing the issue with type of match property (changed from string to boolean) (#325)
This commit is contained in:
parent
df3c4a88ae
commit
3df2fbe5fc
1 changed files with 1 additions and 1 deletions
|
@ -338,7 +338,7 @@ public class JSONReconcileServlet extends VitroHttpServlet {
|
||||||
}
|
}
|
||||||
|
|
||||||
resultJson.put("type", typesJsonArr);
|
resultJson.put("type", typesJsonArr);
|
||||||
resultJson.put("match", "false");
|
resultJson.put("match", false);
|
||||||
resultJsonArr.add(resultJson);
|
resultJsonArr.add(resultJson);
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue