From 589b7d4e3eedc8ff1051f070e0037061f0ed2af9 Mon Sep 17 00:00:00 2001 From: Ajay Date: Fri, 31 Mar 2023 15:08:28 -0400 Subject: [PATCH] Disable branding locks for now --- src/routes/postBranding.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/routes/postBranding.ts b/src/routes/postBranding.ts index b0bca3a..0838057 100644 --- a/src/routes/postBranding.ts +++ b/src/routes/postBranding.ts @@ -38,7 +38,8 @@ export async function postBranding(req: Request, res: Response) { try { const hashedUserID = await getHashCache(userID); - const isVip = await isUserVIP(hashedUserID); + // const isVip = await isUserVIP(hashedUserID); + const isVip = false; // TODO: In future, reenable locks const hashedVideoID = await getHashCache(videoID, 1); const hashedIP = await getHashCache(getIP(req) + config.globalSalt as IPAddress);