fix: 评论区跳转视频页pic null

This commit is contained in:
guozhigq
2024-05-01 20:44:38 +08:00
parent 65a0bb5ff8
commit 92dfef2387
3 changed files with 21 additions and 3 deletions

View File

@ -547,7 +547,7 @@ class VideoDetailController extends GetxController
}
void updateCover(String? pic) {
if (pic != null && pic != '') {
if (pic != null) {
cover.value = videoItem['pic'] = pic;
}
}