forgot to includethe published date in the JSON

This commit is contained in:
Yvan 2025-02-04 02:35:48 +00:00
parent e4def78878
commit 35a37a5157

View file

@ -56,6 +56,8 @@ public class BotAPActorJsonSerializer extends StdSerializer<Bot> {
jgen.writeStringField("type", bot.getType());
jgen.writeStringField("summary", bot.getSummary());
jgen.writeStringField("published", bot.getPublished().toString());
jgen.writeBooleanField("manuallyApproveFollowers", bot.isManuallyApproveFollowers());
jgen.writeBooleanField("indexable", bot.isIndexable());