Merge branch 'RED-7256-NPE-imported-redactions' into 'master'

RED-7256 - Optimization of Upload and Download for Large Files in Azure Blob...

Closes RED-7256

See merge request redactmanager/redaction-report-service!45
This commit is contained in:
Corina Olariu 2024-01-19 11:20:00 +01:00
commit e9274649af

View File

@ -213,7 +213,7 @@ public class EntityLogConverterService {
if (entry.getManualChanges() != null && !entry.getManualChanges().isEmpty()) {
ManualChange lastChange = entry.getManualChanges().get(entry.getManualChanges().size() - 1);
if (lastChange.getManualRedactionType().equals(ManualRedactionType.RESIZE)) {
if (lastChange.getManualRedactionType().equals(ManualRedactionType.RESIZE) && lastChange.getPropertyChanges() != null) {
return lastChange.getPropertyChanges().get("value");
}
}