diff --git a/lib/widgets/post/post_replies.dart b/lib/widgets/post/post_replies.dart index b272be40..ef709f44 100644 --- a/lib/widgets/post/post_replies.dart +++ b/lib/widgets/post/post_replies.dart @@ -75,6 +75,7 @@ class PostRepliesList extends HookConsumerWidget { isShowReference: false, isEmbedOpenable: true, onOpen: onOpen, + onUpdate: (newPost) {}, ), ); diff --git a/lib/widgets/post/post_shared.dart b/lib/widgets/post/post_shared.dart index d80cf216..0970d210 100644 --- a/lib/widgets/post/post_shared.dart +++ b/lib/widgets/post/post_shared.dart @@ -139,7 +139,9 @@ class PostReplyPreview extends HookConsumerWidget { spacing: 8, children: [ ProfilePictureWidget( - file: post.publisher.picture, + file: + post.publisher.picture ?? + post.publisher.account?.profile.picture, radius: 12, ).padding(top: 4), if (post.content?.isNotEmpty ?? false) @@ -218,7 +220,9 @@ class PostReplyPreview extends HookConsumerWidget { spacing: 8, children: [ ProfilePictureWidget( - file: data.value?.publisher.picture, + file: + data.value?.publisher.picture ?? + data.value?.publisher.account?.profile.picture, radius: 12, ).padding(top: 4), if (data.value?.content?.isNotEmpty ?? false)