fix issue with pub api #7326#note-5 the value was a number instaed of search

This commit is contained in:
argirok 2022-02-18 17:41:33 +02:00
parent cc926970ca
commit 3aa1c1ae59
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ public class DatasetProfileManager {
return parseItem(listedItems.get(0));
}
if (item instanceof Map) {
return (String) ((Map)item).get("$");
return String.valueOf(((Map)item).get("$"));
}
return item != null ? item.toString() : null;
}