feat: add action get_group_file_url

This commit is contained in:
pk5ls20
2024-10-19 04:14:01 +08:00
parent 091dc3bdcd
commit bdc44251ee
5 changed files with 57 additions and 5 deletions

View File

@@ -288,14 +288,14 @@ export class PacketPacker {
packGroupFileDownloadReq(groupUin: number, fileUUID: string): PacketHexStr {
return this.toHexStr(
new NapProtoMsg(OidbSvcTrpcTcp0x6D6).encode({
this.packOidbPacket(0x6D6, 2, new NapProtoMsg(OidbSvcTrpcTcp0x6D6).encode({
download: {
groupUin: groupUin,
appId: 7,
busId: 102,
fileId: fileUUID
}
})
}), true, false)
)
}