Skip to content

Commit

Permalink
fix(handler): decrease ratelimit request (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkaroid committed Apr 12, 2023
1 parent 9aa8acb commit 870318a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export function rateLimitHit(userAgent: string | null, ip: string | null): objec
body: JSON.stringify({
success: false,
message: "You have been rate limited",
message_again: "There is a limit of 3 requests per 10 seconds",
message_again: "There is a limit of 5 requests per 10 seconds",
user_agent: userAgent,
ip: ip,
})
Expand Down

0 comments on commit 870318a

Please sign in to comment.