You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
在chatgpt.ts定义一个启动时间 startTime: Date = new Date();
然后在main.ts中的.on("message"方法中加入以下代码可以解决。
let msgDate = message.date();
if (msgDate.getTime() <= chatGPTBot.startTime.getTime()) {
return;
}
The text was updated successfully, but these errors were encountered:
在chatgpt.ts定义一个启动时间 startTime: Date = new Date();
然后在main.ts中的.on("message"方法中加入以下代码可以解决。
let msgDate = message.date();
if (msgDate.getTime() <= chatGPTBot.startTime.getTime()) {
return;
}
The text was updated successfully, but these errors were encountered: