We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7d10b7 commit 3322237Copy full SHA for 3322237
api/src/org/labkey/api/audit/AuditHandler.java
@@ -188,9 +188,12 @@ else if (isExtraAuditField)
188
{
189
// Issue 53825: LKSM/LKB: Sample Timeline entries for lineage updates with domains containing & or . may be incorrect
190
String[] parts = fieldName.split("/", 2);
191
- String prefix = parts[0];
192
- String dataType = parts[1];
193
- existingEncodedInputColumns.add(prefix + "/" + QueryKey.encodePart(dataType));
+ if (parts.length == 2)
+ {
+ String prefix = parts[0];
194
+ String dataType = parts[1];
195
+ existingEncodedInputColumns.add(prefix + "/" + QueryKey.encodePart(dataType));
196
+ }
197
}
198
199
row.forEach((fieldName, value) -> {
0 commit comments