mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
fix: 热门评论重复分页加载
This commit is contained in:
@@ -68,7 +68,8 @@ class DynamicDetailController extends GetxController {
|
||||
noMore.value = '没有更多了';
|
||||
}
|
||||
} else {
|
||||
noMore.value = nextOffset == "" ? '还没有评论' : '没有更多了';
|
||||
noMore.value =
|
||||
nextOffset == "" && reqType == 'init' ? '还没有评论' : '没有更多了';
|
||||
}
|
||||
if (reqType == 'init') {
|
||||
// 添加置顶回复
|
||||
|
||||
Reference in New Issue
Block a user