Merge branch 'fix-replyLoadError'

This commit is contained in:
guozhigq
2024-01-29 23:02:30 +08:00

View File

@ -256,7 +256,12 @@ class _VideoReplyPanelState extends State<VideoReplyPanel>
// 请求错误 // 请求错误
return HttpError( return HttpError(
errMsg: data['msg'], errMsg: data['msg'],
fn: () => setState(() {}), fn: () {
setState(() {
_futureBuilderFuture =
_videoReplyController.queryReplyList();
});
},
); );
} }
} else { } else {