fix: get mid

This commit is contained in:
bggRGjQaUbCoE
2024-10-20 11:58:06 +08:00
parent 73076ba13a
commit 9d48072515
6 changed files with 7 additions and 6 deletions

View File

@@ -71,6 +71,6 @@ class MediaController extends CommonController {
Future<LoadingState> customGetData() => UserHttp.userfavFolder(
pn: 1,
ps: 5,
mid: mid ?? GStorage.userInfo.get('userInfoCache').mid,
mid: mid ?? GStorage.userInfo.get('userInfoCache')?.mid,
);
}