From 7cd1b38d79d2bb26ea834f0cb9fde2e8ce694e0f Mon Sep 17 00:00:00 2001
From: Allan Niles <60013695a@gmail.com>
Date: Tue, 20 Jun 2023 18:47:24 +0000
Subject: [PATCH] add google search
---
utils.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/utils.js b/utils.js
index 0f04e7d..5461f29 100644
--- a/utils.js
+++ b/utils.js
@@ -5,7 +5,7 @@ function isGoogleServiceUrl(url) {
url
) ||
// test several services that witched from the patter "https://maps.google.com" -> https://www.google.com/maps
- /^https?:\/\/(www\.)?google\.co(?:m|\.[a-z]{2,3})\/(?:maps|finance|travel|flights)/i.test(
+ /^https?:\/\/(www\.)?google\.co(?:m|\.[a-z]{2,3})\/(?:maps|finance|travel|flights|search)/i.test(
url
)
);