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:
lambda 2018-04-09 08:42:01 +00:00
commit d7c2909ce2
1 changed files with 3 additions and 0 deletions

View File

@ -375,6 +375,9 @@ defmodule Pleroma.User do
end
def search(query, resolve) do
# strip the beginning @ off if there is a query
query = String.trim_leading(query, "@")
if resolve do
User.get_or_fetch_by_nickname(query)
end