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

This commit is contained in:
guozhigq
2024-05-01 20:44:38 +08:00
parent 91ad0fa03d
commit 291312bde7
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;
}
}