From dd6d83a3292ce840fbe0dfe84c533e77e2f8bad0 Mon Sep 17 00:00:00 2001 From: Hongbo Wu Date: Wed, 3 Jan 2024 21:12:04 +0800 Subject: [PATCH] use in:all for highlights filter --- src/util.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util.ts b/src/util.ts index 3e2e7b2..510cf80 100644 --- a/src/util.ts +++ b/src/util.ts @@ -116,9 +116,9 @@ export const getQueryFromFilter = ( ): string => { switch (filter) { case "ALL": - return "" + return "in:all" case "HIGHLIGHTS": - return `has:highlights` + return `has:highlights in:all` case "ADVANCED": return customQuery default: