Skip to content

Commit

Permalink
use in:all for highlights filter (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
sywhb committed Jan 4, 2024
1 parent 33e2c05 commit c4f2da0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/settings/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ export const getQueryFromFilter = (
): string => {
switch (filter) {
case Filter.ALL:
return ''
return 'in:all'
case Filter.HIGHLIGHTS:
return `has:highlights`
return `has:highlights in:all`
case Filter.ADVANCED:
return customQuery
default:
Expand Down

0 comments on commit c4f2da0

Please sign in to comment.