From 3f60440e72c2025b00e077593de51d1bb36b8f10 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: Sun, 18 May 2025 20:24:49 +0800 Subject: [PATCH] fix --- src/core/packet/context/operationContext.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/packet/context/operationContext.ts b/src/core/packet/context/operationContext.ts index 3f822dad..43161e91 100644 --- a/src/core/packet/context/operationContext.ts +++ b/src/core/packet/context/operationContext.ts @@ -31,7 +31,7 @@ export class PacketOperationContext { } async GroupPoke(groupUin: number, uin: number) { - const req = trans.SendPoke.build(true, uin, groupUin); + const req = trans.SendPoke.build(true, groupUin, uin); await this.context.client.sendOidbPacket(req); }