mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-05-13 13:17:45 +00:00
fix: temp fix for c1ce38f5
This commit is contained in:
parent
c1ce38f594
commit
1805d21b12
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ const searchParamsSchema = z.object({
|
|||
});
|
||||
|
||||
export async function GET(request: NextRequest, { params }: { params: Promise<{ id: string }> }) {
|
||||
const rateLimit = new RateLimit(request, 200, "/mii/image");
|
||||
const rateLimit = new RateLimit(request, 20000, "/mii/image");
|
||||
const check = await rateLimit.handle();
|
||||
if (check) return check;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue