Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Anybox: Fix the "Search Links" command when searching for Tags and Folders names #15547

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions extensions/anybox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Anybox Changelog

## [Bug Fix] - 2024-11-26

- Fix Search Links command when searching for Tags and Folders names

## [Bug Fix] - 2024-07-27

- Fix Search Links command not working with Kagi Search Safari Extesnion (https://github.com/raycast/extensions/issues/13700)
Expand Down
3 changes: 3 additions & 0 deletions extensions/anybox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
"description": "Control Anybox with Raycast",
"icon": "anybox-icon.png",
"author": "anybox",
"contributors": [
"iDarkHusky"
],
"keywords": [
"anybox",
"bookmarks",
Expand Down
5 changes: 4 additions & 1 deletion extensions/anybox/src/search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ function looseMatch(query: string, content: string): boolean {
if (query.length === 0) {
return true;
}
const keywords = query.split(" ").filter((val) => val.length > 0);
const keywords = query
.split(" ")
.filter((val) => val.length > 0)
.map((val) => val.toLowerCase());
const matchName = content.toLowerCase();

for (const keyword of keywords) {
Expand Down
Loading