Skip to content

Commit

Permalink
Add 'or' in stopwords (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
Write authored Sep 1, 2024
1 parent 04feb4a commit 3421f6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ophirofox/content_scripts/europresse_search.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async function onLoad() {
)) return;
const { search_terms, published_time } = await consumeReadRequest();
if (!search_terms) return;
const stopwords = new Set(['d', 'l', 'et', 'sans']);
const stopwords = new Set(['d', 'l', 'et', 'sans', 'or']);

/*
L = { Lu , Ll , Lt , Lm , Lo }
Expand Down

0 comments on commit 3421f6b

Please sign in to comment.