Merge branch 'RM-226-bp' into 'release/4.73.x'

RM-226: chunk empty string correctly

See merge request redactmanager/redaction-report-service!116
This commit is contained in:
Kilian Schüttler 2025-01-21 17:02:15 +01:00
commit 555ac5bf4c

View File

@ -19,6 +19,9 @@ public class CellTextChunkingService {
}
int length = value.length();
if (length < MAX_CELL_TEXT_LENGTH) {
return List.of(value);
}
int startIndex = 0;
while (startIndex < length) {