fix: thumb残留

This commit is contained in:
手瓜一十雪
2025-02-03 14:09:51 +08:00
parent e899e9c861
commit 9115e26f8a
2 changed files with 9 additions and 2 deletions

View File

@@ -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);
},