mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-25 18:01:35 +08:00
fix: thumb残留
This commit is contained in:
parent
9ab41734a5
commit
790809e8e5
@ -181,9 +181,12 @@ export class NTQQFileApi {
|
||||
this.context.logger.logError('复制自定义缩略图失败', e);
|
||||
}
|
||||
}
|
||||
context.deleteAfterSentFiles.push(thumbPath);
|
||||
|
||||
const thumbSize = (await fsPromises.stat(thumbPath)).size;
|
||||
const thumbMd5 = await calculateFileMD5(thumbPath);
|
||||
context.deleteAfterSentFiles.push(path);
|
||||
context.deleteAfterSentFiles.push(thumbPath);
|
||||
|
||||
|
||||
const uploadName = (fileName || _fileName).toLocaleLowerCase().endsWith(`.${fileExt.toLocaleLowerCase()}`) ? (fileName || _fileName) : `${fileName || _fileName}.${fileExt}`;
|
||||
return {
|
||||
|
||||
@ -535,8 +535,12 @@ export class OneBotMsgApi {
|
||||
let thumb = sendMsg.data.thumb;
|
||||
if (thumb) {
|
||||
const uri2LocalRes = await uriToLocalFile(this.core.NapCatTempPath, thumb);
|
||||
if (uri2LocalRes.success) thumb = uri2LocalRes.path;
|
||||
if (uri2LocalRes.success) {
|
||||
thumb = uri2LocalRes.path;
|
||||
context.deleteAfterSentFiles.push(thumb);
|
||||
}
|
||||
}
|
||||
|
||||
return await this.core.apis.FileApi.createValidSendVideoElement(context, path, fileName, thumb);
|
||||
},
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user