From 91cff9f45fd74c687d0c5c4c676aecd2b9f9835f Mon Sep 17 00:00:00 2001 From: zhiyu1998 <542716863@qq.com> Date: Mon, 19 Aug 2024 10:01:00 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20`twitter=5Fx`=E5=B0=91?= =?UTF-8?q?=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/tools.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/tools.js b/apps/tools.js index ba9cf75..b2815c2 100644 --- a/apps/tools.js +++ b/apps/tools.js @@ -2260,7 +2260,7 @@ export class tools extends plugin { const stats = fs.statSync(path); const videoSize = Math.floor(stats.size / (1024 * 1024)); if (videoSize > videoSizeLimit) { - e.reply(`当前视频大小:${ videoSize }MB,\n大于设置的最大限制,\n改为上传群文件`); + e.reply(`当前视频大小:${ videoSize }MB,\n大于设置的最大限制:${ videoSizeLimit }MB,\n改为上传群文件`); await this.uploadGroupFile(e, path); } else { e.reply(segment.video(path));