mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
RM-6310: sc:securityMarksSearch is not properly updated when editing the content classification (affects the results from RM search results): fixed typo
This commit is contained in:
@@ -131,7 +131,7 @@ public abstract class BaseAPI
|
|||||||
*/
|
*/
|
||||||
protected String getPropertyValue(JSONObject result, String nodeRef, String propertyName)
|
protected String getPropertyValue(JSONObject result, String nodeRef, String propertyName)
|
||||||
{
|
{
|
||||||
String propertValue = "";
|
String propertyValue = "";
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
JSONArray items = result.getJSONArray("items");
|
JSONArray items = result.getJSONArray("items");
|
||||||
@@ -140,7 +140,7 @@ public abstract class BaseAPI
|
|||||||
JSONObject item = items.getJSONObject(i);
|
JSONObject item = items.getJSONObject(i);
|
||||||
if(nodeRef.equals(item.getString("nodeRef")))
|
if(nodeRef.equals(item.getString("nodeRef")))
|
||||||
{
|
{
|
||||||
propertValue = item.getJSONObject("properties").getString(propertyName);
|
propertyValue = item.getJSONObject("properties").getString(propertyName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -149,7 +149,7 @@ public abstract class BaseAPI
|
|||||||
throw new RuntimeException("Unable to parse result", error);
|
throw new RuntimeException("Unable to parse result", error);
|
||||||
}
|
}
|
||||||
|
|
||||||
return propertValue;
|
return propertyValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user