diff --git a/core/recall.go b/core/recall.go index b8c5f34..05de0ce 100644 --- a/core/recall.go +++ b/core/recall.go @@ -14,7 +14,9 @@ func init() { { Rules: rules, Handle: func(s Sender) interface{} { - s.Delete() + if !s.IsAdmin() { + s.Delete() + } return nil }, }, diff --git a/develop/qinglong/cron.go b/develop/qinglong/cron.go index 219a017..dfc4420 100644 --- a/develop/qinglong/cron.go +++ b/develop/qinglong/cron.go @@ -209,6 +209,9 @@ func init() { } tasks := map[string]Cron{} for i := range crons { + if strings.Contains(crons[i].Name, "傻妞") { + continue + } if crons[i].IsDisabled != 0 { continue }