fix parse dyn emoji

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-12-21 23:15:26 +08:00
parent a0f3b3e442
commit 191bcbc525
2 changed files with 14 additions and 2 deletions

View File

@@ -681,7 +681,11 @@ class ReplyItemGrpc extends StatelessWidget {
spanChildren.add(
WidgetSpan(
child: NetworkImgLayer(
src: emote.hasGifUrl() ? emote.gifUrl : emote.url,
src: emote.hasWebpUrl()
? emote.webpUrl
: emote.hasGifUrl()
? emote.gifUrl
: emote.url,
type: ImageType.emote,
width: size,
height: size,