diff --git a/api/rate/rate.go b/api/rate/rate.go index 8162de1..79dbdf3 100644 --- a/api/rate/rate.go +++ b/api/rate/rate.go @@ -51,12 +51,9 @@ type bucket struct { func NewLimiter() *Limiter { return &Limiter{ - global: new(int64), - buckets: sync.Map{}, - CustomLimits: []*CustomRateLimit{{ - Contains: "/reactions/", - Reset: 200 * time.Millisecond, - }}, + global: new(int64), + buckets: sync.Map{}, + CustomLimits: []*CustomRateLimit{}, } }