mirror of
https://github.com/mastodon/mastodon
synced 2024-11-28 14:58:21 +09:00
Change /api/v1/peers/search to be case-insensitive when using Elasticsearch (#26268)
This commit is contained in:
parent
fd284311e7
commit
6c39125761
@ -27,7 +27,7 @@ class Api::V1::Peers::SearchController < Api::BaseController
|
||||
@domains = InstancesIndex.query(function_score: {
|
||||
query: {
|
||||
prefix: {
|
||||
domain: params[:q],
|
||||
domain: TagManager.instance.normalize_domain(params[:q].strip),
|
||||
},
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user