You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ((jsonObj.get("current_member_guid") != null && !jsonObj.get("current_member_guid").isJsonNull()) && !jsonObj.get("current_member_guid").isJsonPrimitive()) {
623
651
thrownewIllegalArgumentException(String.format("Expected the field `current_member_guid` to be a primitive type in the JSON string but got `%s`", jsonObj.get("current_member_guid").toString()));
624
652
}
653
+
if ((jsonObj.get("insight_guid") != null && !jsonObj.get("insight_guid").isJsonNull()) && !jsonObj.get("insight_guid").isJsonPrimitive()) {
654
+
thrownewIllegalArgumentException(String.format("Expected the field `insight_guid` to be a primitive type in the JSON string but got `%s`", jsonObj.get("insight_guid").toString()));
655
+
}
625
656
if ((jsonObj.get("microwidget_instance_id") != null && !jsonObj.get("microwidget_instance_id").isJsonNull()) && !jsonObj.get("microwidget_instance_id").isJsonPrimitive()) {
626
657
thrownewIllegalArgumentException(String.format("Expected the field `microwidget_instance_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("microwidget_instance_id").toString()));
0 commit comments