🐛 修复清理不活跃成员功能的BUG

This commit is contained in:
李寻欢
2024-05-16 00:12:47 +08:00
parent 9c7e93660d
commit 8c2ab9376c
3 changed files with 5 additions and 5 deletions

View File

@@ -58,7 +58,7 @@ func InitTasks() {
}
// 每天0点检查一次处理清理群成员
_, _ = s.Cron("0 0 * * *").Do(cleargroupuser.ClearGroupUser)
_, _ = s.Cron("12 0 * * *").Do(cleargroupuser.ClearGroupUser)
// 开启定时任务
s.StartAsync()