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
When fetching a document from Solr and converting it to POJO, there is a transformation problem: converting multivalued fields into a single string and then converting it back to a list.
Example:
From Solr comes the following field: "permission_users_GRANT":["admin","guest"]
the first conversion results in: "[admin,guest]"
the second conversion results in: ["[admin,guest]"]
Giving the following result when requested via REST-API:
When fetching a document from Solr and converting it to POJO, there is a transformation problem: converting multivalued fields into a single string and then converting it back to a list.
Example:
From Solr comes the following field: "permission_users_GRANT":["admin","guest"]
Giving the following result when requested via REST-API:
Here:
https://github.com/keeps/roda/blob/78d156dce3f00c9270a473c85c50a85812d268ef/roda-core/roda-core/src/main/java/org/roda/core/index/schema/collections/FileCollection.java#L328C5-L334C6
The text was updated successfully, but these errors were encountered: