search

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 0f2e10b16812b3615857dedf089b4dc9b8ffdd82
parent cc89f1bbd181b555324ccccb43bab833b8743658
Author: Theo Browne <me@t3.gg>
Date:   Fri, 14 Feb 2025 22:33:22 -0800

oops

Diffstat:
Msrc/main.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.ts b/src/main.ts @@ -50,7 +50,7 @@ function getBangredirectUrl() { return null; } - const match = query.match(/!([a-z]+)/i); + const match = query.match(/!([a-z0-9]+)/i); const bangCandidate = match?.[1]?.toLowerCase(); const selectedBang = bangs.find((b) => b.t === bangCandidate) ?? defaultBang;