From 7636a82d5da50016f6129e650f360c3401926be4 Mon Sep 17 00:00:00 2001 From: sijinhui Date: Mon, 2 Sep 2024 15:46:06 +0800 Subject: [PATCH] fix user token --- app/api/logs/[[...path]]/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/logs/[[...path]]/route.ts b/app/api/logs/[[...path]]/route.ts index 3eb62250c..ee863e695 100644 --- a/app/api/logs/[[...path]]/route.ts +++ b/app/api/logs/[[...path]]/route.ts @@ -32,7 +32,7 @@ async function handle( ) { current_day_limit_token = current_user.everyLimitToken * 1000; } else { - current_day_limit_token = 0; + current_day_limit_token = 200 * 1000; } const current_day_token = await prisma.logEntry