mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
fix
This commit is contained in:
parent
870a915377
commit
76203f49a7
@ -17,7 +17,8 @@ interface GroupNotice {
|
|||||||
}>
|
}>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
export class GetGroupNotice extends BaseAction<PayloadType, GroupNotice[]> {
|
type ApiGroupNotice = GroupNotice & WebApiGroupNoticeFeed;
|
||||||
|
export class GetGroupNotice extends BaseAction<PayloadType, ApiGroupNotice[]> {
|
||||||
actionName = ActionName.GoCQHTTP_GetGroupNotice;
|
actionName = ActionName.GoCQHTTP_GetGroupNotice;
|
||||||
|
|
||||||
protected async _handle(payload: PayloadType) {
|
protected async _handle(payload: PayloadType) {
|
||||||
@ -26,9 +27,10 @@ export class GetGroupNotice extends BaseAction<PayloadType, GroupNotice[]> {
|
|||||||
if (!ret) {
|
if (!ret) {
|
||||||
throw new Error('获取公告失败');
|
throw new Error('获取公告失败');
|
||||||
}
|
}
|
||||||
let retNotices: GroupNotice[] = new Array<GroupNotice>();
|
let retNotices: ApiGroupNotice[] = new Array<ApiGroupNotice>();
|
||||||
for (let key in ret.feeds) {
|
for (let key in ret.feeds) {
|
||||||
let retNotice: GroupNotice = {
|
let retNotice: ApiGroupNotice = {
|
||||||
|
...ret.feeds[key],
|
||||||
sender_id: ret.feeds[key].u,
|
sender_id: ret.feeds[key].u,
|
||||||
publish_time: ret.feeds[key].pubt,
|
publish_time: ret.feeds[key].pubt,
|
||||||
message: {
|
message: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user