-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Closed
Labels
bugSomething isn't workingSomething isn't workingextensionIssues related to one of the extensions in the StoreIssues related to one of the extensions in the Store
Description
Extension – search-mdn
Author: @krzysztofzuraw @OBQun @grzegorzkrukowski
Description
search-mdn should return documents matching query
now returns 404 ("Could not load MDN results. Error: Request failed with status code 404")
seems the endpoint has changed(?). played with it locally.
old query:
`https://developer.mozilla.org/api/v1/search/${locale}`, {
params: {
q: query,
sort: "best",
},
}
fix for query:
`https://developer.mozilla.org/api/v1/search`, {
params: {
q: query,
sort: "best",
locale: locale,
},
}
Steps To Reproduce
- Enter query into Search MDN extension
- 404
The current behavior
404 on query
The expected behavior
return documents matching search query
Raycast version
Version: 1.37.1
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingextensionIssues related to one of the extensions in the StoreIssues related to one of the extensions in the Store

