RM-7111: AGS 3.3 can't be installed on ACS 6.1

- added alfresco.min.version to 6.1
This commit is contained in:
Ramona Popa
2020-02-05 12:28:31 +00:00
parent 4ce3d763ed
commit 0f7cc3b94c
4 changed files with 26 additions and 4 deletions

View File

@@ -67,8 +67,11 @@ public class RMv33HoldAuditEntryValuesPatch extends AbstractModulePatch
private void updatePropertyStringValueEntity(String fromStringValue, String toStringValue)
{
PropertyStringValueEntity propertyStringValueEntity = recordsManagementQueryDAO.getPropertyStringValueEntity(fromStringValue);
propertyStringValueEntity.setValue(toStringValue);
recordsManagementQueryDAO.updatePropertyStringValueEntity(propertyStringValueEntity);
if (propertyStringValueEntity != null)
{
propertyStringValueEntity.setValue(toStringValue);
recordsManagementQueryDAO.updatePropertyStringValueEntity(propertyStringValueEntity);
}
}
}