mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-23 05:57:21 +00:00
Use opensearch for suggestions api.
This commit is contained in:
parent
cbedbd0626
commit
89bcb549cc
@ -47,9 +47,11 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
async refreshSuggestions() {
|
async refreshSuggestions() {
|
||||||
this.searchSuggestions = await this.fetchJson(this.apiUrl() + "/suggestions", {
|
this.searchSuggestions = (
|
||||||
query: this.searchText,
|
await this.fetchJson(this.apiUrl() + "/opensearch/suggestions", {
|
||||||
});
|
query: this.searchText,
|
||||||
|
})
|
||||||
|
)?.[1];
|
||||||
this.searchSuggestions.unshift(this.searchText);
|
this.searchSuggestions.unshift(this.searchText);
|
||||||
this.setSelected(0);
|
this.setSelected(0);
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user