Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-19 14:44:49 +08:00
parent 9b8d4a62fa
commit 3bfb0db307
11 changed files with 85 additions and 67 deletions

View File

@@ -281,12 +281,18 @@ TextSpan? richNode(
onView(i.pics!);
return;
}
if (i.dynPic?.isNotEmpty == true) {
onView(i.dynPic!);
return;
}
DynamicsHttp.dynPic(i.rid).then((res) {
if (res.isSuccess) {
var list = res.data;
if (Platform.isAndroid) {
i.pics = list;
} else {
i.dynPic = list;
}
if (list?.isNotEmpty == true) {
onView(list!);