mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
fix: whisper page: pass none null mid
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -249,6 +249,8 @@ class _WhisperPageState extends State<WhisperPage> {
|
|||||||
sessionList[i].accountInfo.name,
|
sessionList[i].accountInfo.name,
|
||||||
'face':
|
'face':
|
||||||
sessionList[i].accountInfo.face,
|
sessionList[i].accountInfo.face,
|
||||||
|
if (sessionList[i].accountInfo.mid !=
|
||||||
|
null)
|
||||||
'mid': sessionList[i]
|
'mid': sessionList[i]
|
||||||
.accountInfo
|
.accountInfo
|
||||||
.mid
|
.mid
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ class WhisperDetailController extends GetxController {
|
|||||||
talkerId = int.parse(Get.parameters['talkerId']!);
|
talkerId = int.parse(Get.parameters['talkerId']!);
|
||||||
name = Get.parameters['name']!;
|
name = Get.parameters['name']!;
|
||||||
face = Get.parameters['face']!;
|
face = Get.parameters['face']!;
|
||||||
mid = Get.parameters['mid']!;
|
mid = Get.parameters['mid'];
|
||||||
|
|
||||||
querySessionMsg();
|
querySessionMsg();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user