From ed77db3f3e252013c741df2b062f9561f4f468f0 Mon Sep 17 00:00:00 2001 From: lhhxxxxx <91231470+lhhxxxxx@users.noreply.github.com> Date: Sat, 6 Jul 2024 01:18:15 +0800 Subject: [PATCH] =?UTF-8?q?fix.=20=E4=BF=AE=E5=A4=8Duid=E4=B8=8Eqq?= =?UTF-8?q?=E5=8F=B7=E5=AF=B9=E5=BA=94=E5=85=B3=E7=B3=BB=E4=B8=8D=E5=88=B7?= =?UTF-8?q?=E6=96=B0=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/profile/ProfileList.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/profile/ProfileList.js b/apps/profile/ProfileList.js index 91657154..e4717d5c 100644 --- a/apps/profile/ProfileList.js +++ b/apps/profile/ProfileList.js @@ -59,8 +59,8 @@ const ProfileList = { if (e.runtime && e.runtime?.user) { let uids = [] let user = e.runtime.user - if (typeof user.getCkUidList === 'function') { - uids = user.getCkUidList(e.game).map(i => i.uid) || [] + if (typeof user.getUidList === 'function') { + uids = user.getUidList(e.game).map(i => i.uid) || [] } else { uids = user.ckUids || [] }