logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git
commit: 1c379b7ef46edeaa7a8238902546ed7215b02fe2
parent 1a37d7e252aa41fd1c66e780e1a2a1426d8f3545
Author: ThibG <thib@sitedethib.com>
Date:   Mon, 16 Apr 2018 17:19:04 +0200

Remove extra spaces from search API queries and public account headers (fixes #7129) (#7152)


Diffstat:

Mapp/services/search_service.rb2+-
Mapp/views/accounts/_header.html.haml4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app/services/search_service.rb b/app/services/search_service.rb @@ -4,7 +4,7 @@ class SearchService < BaseService attr_accessor :query, :account, :limit, :resolve def call(query, limit, resolve = false, account = nil) - @query = query + @query = query.strip @account = account @limit = limit @resolve = resolve diff --git a/app/views/accounts/_header.html.haml b/app/views/accounts/_header.html.haml @@ -6,8 +6,8 @@ .card__bio %h1.name %span.p-name.emojify= display_name(account) - %small - %span @#{account.local_username_and_domain} + %small< + %span>< @#{account.local_username_and_domain} = fa_icon('lock') if account.locked? - if Setting.show_staff_badge