This commit is contained in:
Nicolas
2024-04-20 14:10:29 -07:00
parent 43c2e877e7
commit 5b3c75b06e
2 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ async function authenticateUser(req, res, mode?: RateLimiterMode): Promise<{ suc
return { success: false, error: "Rate limit exceeded. Too many requests, try again in 1 minute.", status: 429 };
}
if (token === "this_is_just_a_preview_token" && mode === "scrape") {
if (token === "this_is_just_a_preview_token" && (mode === RateLimiterMode.Scrape || mode === RateLimiterMode.Preview)) {
return { success: true, team_id: "preview" };
}