forked from AkkomaGang/akkoma
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 @@ def get_recipients_from_activity(%Activity{recipients: to}) 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
|
||||
|
|
Loading…
Reference in a new issue