fixing the issue with type of match property (changed from string to boolean) (#325)

This commit is contained in:
Dragan Ivanovic 2022-08-25 16:32:11 +02:00 committed by GitHub
parent df3c4a88ae
commit 3df2fbe5fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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) {