diff --git a/components/ExternalPlugins.js b/components/ExternalPlugins.js
index 29b31934..260e66b8 100644
--- a/components/ExternalPlugins.js
+++ b/components/ExternalPlugins.js
@@ -101,7 +101,7 @@ const ExternalPlugin = (props) => {
{ANALYTICS_51LA_ID && ANALYTICS_51LA_CK && }
{ANALYTICS_51LA_ID && ANALYTICS_51LA_CK && (<>
-
+
{/* }
+ {AD_WWADS_ID && }
{COMMENT_TWIKOO_ENV_ID && }
diff --git a/pages/search/[keyword]/index.js b/pages/search/[keyword]/index.js
index cd6166ed..89bec089 100644
--- a/pages/search/[keyword]/index.js
+++ b/pages/search/[keyword]/index.js
@@ -113,7 +113,7 @@ const isIterable = obj =>
async function filterByMemCache(allPosts, keyword) {
const filterPosts = []
if (keyword) {
- keyword = keyword.trim()
+ keyword = keyword.trim().toLowerCase()
}
for (const post of allPosts) {
const cacheKey = 'page_block_' + post.id
@@ -131,7 +131,7 @@ async function filterByMemCache(allPosts, keyword) {
if (!c) {
continue
}
- const index = c.toLowerCase().indexOf(keyword.toLowerCase())
+ const index = c.toLowerCase().indexOf(keyword)
if (index > -1) {
hit = true
hitCount += 1