remove allow_agent

This commit is contained in:
Brian Cao 2022-08-22 23:21:44 -07:00
parent 71c1b979da
commit 537ddde189

View File

@ -12,7 +12,7 @@ import { uuid } from 'lib/crypto';
export default async (req, res) => {
await useCors(req, res);
if (isbot(req.headers['user-agent']) && !process.env.ALLOW_AGENT) {
if (isbot(req.headers['user-agent'])) {
return ok(res);
}