Skip to content

Commit

Permalink
Increase minimum requirements for unique users and groups in sticker …
Browse files Browse the repository at this point in the history
…handler
  • Loading branch information
LyoSU committed Jan 6, 2025
1 parent 34481df commit 99efd9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions handlers/sticker.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ const redis = new Redis({
const PREFIX = 'quotly'
const PUBLISH_DELAY = 1000
const MIN_USES = 10
const MIN_UNIQUE_USERS = 5
const MIN_UNIQUE_USERS = 10
const MIN_UNIQUE_STICKERS = 5
const MIN_GROUPS = 5
const MIN_GROUPS = 10
const MAX_USES_PER_USER = 10
const DATA_EXPIRE_TIME = 60 * 60 // 1 hour

Expand Down

0 comments on commit 99efd9f

Please sign in to comment.