From 25b3325a44542835d5074fa15b1e79998e87edc2 Mon Sep 17 00:00:00 2001 From: linyuchen Date: Wed, 29 May 2024 16:28:46 +0800 Subject: [PATCH] fix: comment --- src/onebot11/action/msg/SendMsg.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/onebot11/action/msg/SendMsg.ts b/src/onebot11/action/msg/SendMsg.ts index 42480bf..2c92a51 100644 --- a/src/onebot11/action/msg/SendMsg.ts +++ b/src/onebot11/action/msg/SendMsg.ts @@ -327,7 +327,7 @@ export async function sendMsg( } } log('发送消息总大小', totalSize, 'bytes') - let timeout = ((totalSize / 1024 / 100) * 1000) + 5000 // 100/s + let timeout = ((totalSize / 1024 / 100) * 1000) + 5000 // 100kb/s log('设置消息超时时间', timeout) const returnMsg = await NTQQMsgApi.sendMsg(peer, sendElements, waitComplete, timeout) log('消息发送结果', returnMsg)