We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c71a31 commit 908fbbdCopy full SHA for 908fbbd
1 file changed
src/functions/utils.ts
@@ -41,5 +41,8 @@ export function isPotentialBot(userAgent: string | undefined): boolean {
41
if (!userAgent || userAgent.startsWith("Bun/")) {
42
return false;
43
}
44
+ if (userAgent === "") {
45
+ return true;
46
+ }
47
return isbot(userAgent);
48
0 commit comments