Fixed error in request Configuration

Fixed error in request Configuration
This commit is contained in:
Giancarlo Panichi 2022-12-15 16:05:04 +01:00
parent 18030c6804
commit 4f8dbc7b62
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ public class UtilityResource {
//TODO
//id=jsonArray.getJSONObject(i).getString("header");
//id="b981efde-18ea-4867-98e7-5d024fcfc0cb"+i;
JSONObject header=new JSONObject(jsonArray.getJSONObject(i).getString("header"));
JSONObject header=new JSONObject(jsonArray.getJSONObject(i).get("header").toString());
id=(String) header.get("uuid");
System.out.println("------------id----------->"+id);