mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-12-23 00:26:30 +00:00
Merge branch 'bugfix/user-search-with-at-sign' into 'develop'
user: strip leading @ from user query when searching for users if present Closes #117 See merge request pleroma/pleroma!99
This commit is contained in:
commit
d7c2909ce2
1 changed files with 3 additions and 0 deletions
|
@ -375,6 +375,9 @@ defmodule Pleroma.User do
|
||||||
end
|
end
|
||||||
|
|
||||||
def search(query, resolve) do
|
def search(query, resolve) do
|
||||||
|
# strip the beginning @ off if there is a query
|
||||||
|
query = String.trim_leading(query, "@")
|
||||||
|
|
||||||
if resolve do
|
if resolve do
|
||||||
User.get_or_fetch_by_nickname(query)
|
User.get_or_fetch_by_nickname(query)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue