修复低配转换超时问题

This commit is contained in:
ZJY 2021-09-08 15:31:30 +08:00
parent 6f2375e604
commit 3d4b5884b0

View File

@ -47,7 +47,7 @@ func cmd(str string, sender *Sender) string {
}
msg += line
nt := time.Now()
if (nt.Unix() - st.Unix()) > 1 {
if (nt.Unix() - st.Unix()) > 10 {
sender.Reply(msg)
st = nt
msg = ""