Make profile search case-insensitive
This commit is contained in:
parent
9156dec5bb
commit
e2b5147502
1 changed files with 1 additions and 1 deletions
|
@ -336,7 +336,7 @@ pub async fn search_profile(
|
|||
"
|
||||
SELECT actor_profile
|
||||
FROM actor_profile
|
||||
WHERE acct LIKE $1
|
||||
WHERE acct ILIKE $1
|
||||
",
|
||||
&[&db_search_query],
|
||||
).await?;
|
||||
|
|
Loading…
Reference in a new issue