Compare commits

..

No commits in common. "a5fe88db371269a1aa567b6654f83c4af94de8a0" and "9df3582913bf27ce66d6af28c87c2bd7203cdb5f" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -26,6 +26,6 @@ public class MinioPrefixSerializer implements ObjectWriter<String> {
if (object instanceof String path && StrUtil.isNotEmpty(path)) { if (object instanceof String path && StrUtil.isNotEmpty(path)) {
jsonWriter.writeString(minioPrefix + object); jsonWriter.writeString(minioPrefix + object);
} }
jsonWriter.writeString(""); jsonWriter.writeNull();
} }
} }