This commit is contained in:
手瓜一十雪 2024-08-11 00:54:26 +08:00
parent b6ae67bf3e
commit f9bf8f9901
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ export class NTQQFileApi {
}
async getFileSize(filePath: string): Promise<number> {
return await this.context.wrapper.util.getFileSize(filePath);
return await this.core.util.getFileSize(filePath);
}
async getVideoUrl(peer: Peer, msgId: string, elementId: string) {

View File

@ -10,7 +10,7 @@ export class NTQQSystemApi {
}
async hasOtherRunningQQProcess() {
return this.context.wrapper.util.hasOtherRunningQQProcess();
return this.core.util.hasOtherRunningQQProcess();
}
async ORCImage(filePath: string) {