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()) {
595
623
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()));
596
624
}
625
+
if ((jsonObj.get("microwidget_instance_id") != null && !jsonObj.get("microwidget_instance_id").isJsonNull()) && !jsonObj.get("microwidget_instance_id").isJsonPrimitive()) {
626
+
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()));
627
+
}
597
628
if ((jsonObj.get("mode") != null && !jsonObj.get("mode").isJsonNull()) && !jsonObj.get("mode").isJsonPrimitive()) {
598
629
thrownewIllegalArgumentException(String.format("Expected the field `mode` to be a primitive type in the JSON string but got `%s`", jsonObj.get("mode").toString()));
0 commit comments