Merge branch 'linyuchen:main' into dev-1

This commit is contained in:
Disy 2024-02-18 10:05:27 +08:00 committed by GitHub
commit d1eef6759c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 3 deletions

View File

@ -4,7 +4,7 @@
"name": "LLOneBot",
"slug": "LLOneBot",
"description": "LiteLoaderQQNT的OneBotApi",
"version": "3.3.0",
"version": "3.3.1",
"thumbnail": "./icon.png",
"authors": [
{

View File

@ -88,5 +88,5 @@ export function getStrangerByUin(uin: string) {
}
}
export const version = "v3.3.0"
export const version = "v3.3.1"
export const heartInterval = 15000 // 毫秒

View File

@ -183,7 +183,9 @@ export class OB11Constructor extends OB11EventConstructor{
static group(group: Group): OB11Group {
return {
group_id: parseInt(group.groupCode),
group_name: group.groupName
group_name: group.groupName,
member_count: group.memberCount,
max_member_count: group.maxMember
}
}