- return new JsonQuote(id, author, authorNumber, authorUuid, text, mentions, attachments);
+ final var textStyles = !quote.textStyles().isEmpty() ? quote.textStyles()
+ .stream()
+ .map(JsonTextStyle::from)
+ .toList() : null;
+
+ return new JsonQuote(id, author, authorNumber, authorUuid, text, mentions, attachments, textStyles);