Build: 1.2.0-beta12

This commit is contained in:
手瓜一十雪 2024-05-02 20:47:29 +08:00
parent a2a4c97f6c
commit aa43334f41
2 changed files with 2 additions and 3 deletions

@ -1 +1 @@
Subproject commit 3b938b933ab44f6adf39773b4715b651391c2bc6 Subproject commit 8d880802afadd35ed10057e0c16bd114755d8669

View File

@ -7,7 +7,6 @@ import {
NTQQUserApi, NTQQUserApi,
NTQQFileApi, NTQQFileApi,
// NTQQFileCacheApi, // NTQQFileCacheApi,
NTQQWindowApi,
} from '@/core'; } from '@/core';
import { ActionName } from '../types'; import { ActionName } from '../types';
import { log, logDebug } from '@/common/utils/log'; import { log, logDebug } from '@/common/utils/log';
@ -24,7 +23,7 @@ export default class Debug extends BaseAction<Payload, any> {
logDebug('debug call ntqq api', payload); logDebug('debug call ntqq api', payload);
const ntqqApi = [NTQQMsgApi, NTQQFriendApi, NTQQGroupApi, NTQQUserApi, NTQQFileApi, const ntqqApi = [NTQQMsgApi, NTQQFriendApi, NTQQGroupApi, NTQQUserApi, NTQQFileApi,
// NTQQFileCacheApi, // NTQQFileCacheApi,
NTQQWindowApi]; ];
for (const ntqqApiClass of ntqqApi) { for (const ntqqApiClass of ntqqApi) {
// logDebug('ntqqApiClass', ntqqApiClass); // logDebug('ntqqApiClass', ntqqApiClass);
const method = (<any>ntqqApiClass)[payload.method]; const method = (<any>ntqqApiClass)[payload.method];