diff --git a/lib/widgets/post/post_item.dart b/lib/widgets/post/post_item.dart index 60f42b0..137e14f 100644 --- a/lib/widgets/post/post_item.dart +++ b/lib/widgets/post/post_item.dart @@ -880,6 +880,7 @@ class _PostContentBody extends StatelessWidget { Widget build(BuildContext context) { if (data.body['content'] == null) return const SizedBox.shrink(); final content = MarkdownTextContent( + isAutoWarp: data.type == 'story', isEnlargeSticker: true, textScaler: isEnlarge ? TextScaler.linear(1.1) : null, content: data.body['content'],