From 68a97842c982d7d2d97aa4ba8a172a87179c1ce1 Mon Sep 17 00:00:00 2001 From: Hongbo Wu Date: Thu, 4 Jan 2024 10:48:00 +0800 Subject: [PATCH] use in:all for highlights filter (#172) --- 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: