From 1a6194b38cdf1219e2b86264db5755c6e8b0365b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=89=8B=E7=93=9C=E4=B8=80=E5=8D=81=E9=9B=AA?= Date: Wed, 22 Jan 2025 15:36:49 +0800 Subject: [PATCH] fix: Schema miss --- src/onebot/action/extends/FetchUserProfileLike.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/onebot/action/extends/FetchUserProfileLike.ts b/src/onebot/action/extends/FetchUserProfileLike.ts index d4a32ace..fb083e33 100644 --- a/src/onebot/action/extends/FetchUserProfileLike.ts +++ b/src/onebot/action/extends/FetchUserProfileLike.ts @@ -10,7 +10,7 @@ type Payload = Static; export class FetchUserProfileLike extends OneBotAction { actionName = ActionName.FetchUserProfileLike; - + payloadSchema = SchemaData; async _handle(payload: Payload) { return await this.core.apis.UserApi.getUidByUinV2(payload.user_id.toString()); }