RED-8773 - Wrong value for recategorized and forced logo - backport

- use image.getValue instead of image.value() so that following recategorizations for images will get the updated value
This commit is contained in:
Corina Olariu 2024-03-18 18:19:38 +02:00
parent 0d53e65a0c
commit afc83db249

View File

@ -190,7 +190,7 @@ public class EntityLogCreatorService {
boolean isHint = dictionaryService.isHint(imageType, dossierTemplateId);
return EntityLogEntry.builder()
.id(image.getId())
.value(image.value())
.value(image.getValue())
.type(imageType)
.reason(image.buildReasonWithManualChangeDescriptions())
.legalBasis(image.legalBasis())