diff --git a/src/main.ts b/src/main.ts index d42da13..f7d188d 100644 --- a/src/main.ts +++ b/src/main.ts @@ -8,9 +8,8 @@ function getBangredirectUrl() { if (!query) return null; const match = query.match(/!([a-z]+)/i); - if (!match) return null; - const bangCandidate = match[1].toLowerCase(); + const bangCandidate = match?.[1]?.toLowerCase(); const selectedBang = bangs.find((b) => b.t === bangCandidate) ?? defaultBang; // Remove the first bang from the query