diff --git a/src/onebot11/action/extends/OCRImage.ts b/src/onebot11/action/extends/OCRImage.ts index b837e1d4..d2d8fffc 100644 --- a/src/onebot11/action/extends/OCRImage.ts +++ b/src/onebot11/action/extends/OCRImage.ts @@ -22,7 +22,7 @@ export class OCRImage extends BaseAction { protected async _handle(payload: Payload) { const { path, isLocal, errMsg } = (await uri2local(payload.image)); if (errMsg) { - throw `OCR ${payload.file}失败,file字段可能格式不正确`; + throw `OCR ${payload.file}失败,image字段可能格式不正确`; } if (path) { await checkFileReceived(path, 5000); // 文件不存在QQ会崩溃,需要提前判断 diff --git a/src/onebot11/action/index.ts b/src/onebot11/action/index.ts index 3b5ed219..333d9d74 100644 --- a/src/onebot11/action/index.ts +++ b/src/onebot11/action/index.ts @@ -59,7 +59,7 @@ import { GetGroupHonorInfo } from './go-cqhttp/GetGroupHonorInfo'; import { GoCQHTTHandleQuickAction } from './go-cqhttp/QuickAction'; import { GetGroupSystemMsg } from './group/GetGroupSystemMsg'; import { GetOnlineClient } from './go-cqhttp/GetOnlineClient'; -import { IOCRImage, OCRImage } from './go-cqhttp/OCRImage'; +import { IOCRImage, OCRImage } from './extends/OCRImage'; export const actionHandlers = [ new RebootNormol(),