mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
feat: 动态侧栏新增按最常访问显示所有已关注Up功能;抽屉式侧栏限制安全域
This commit is contained in:
@@ -73,14 +73,14 @@ class UpItem {
|
||||
UpItem({
|
||||
this.face,
|
||||
this.hasUpdate,
|
||||
this.isReserveRecall,
|
||||
// this.isReserveRecall,
|
||||
this.mid,
|
||||
this.uname,
|
||||
});
|
||||
|
||||
String? face;
|
||||
bool? hasUpdate;
|
||||
bool? isReserveRecall;
|
||||
// bool? isReserveRecall;
|
||||
int? mid;
|
||||
String? uname;
|
||||
String type = 'up';
|
||||
@@ -88,7 +88,7 @@ class UpItem {
|
||||
UpItem.fromJson(Map<String, dynamic> json) {
|
||||
face = json['face'];
|
||||
hasUpdate = json['has_update'];
|
||||
isReserveRecall = json['is_reserve_recall'];
|
||||
// isReserveRecall = json['is_reserve_recall'];
|
||||
mid = json['mid'];
|
||||
uname = json['uname'];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user