logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 889ada5ee257f7cecce55bd2366161d0a673a4f8
parent: 3f16caaa50beae1ea4a4e2df5820f5cca627d2be
Author: ThibG <thib@sitedethib.com>
Date:   Tue,  7 Nov 2017 22:15:15 +0100

Fix process mentions for local users, as local users are considered to use OStatus (#5618)


Diffstat:

Mapp/services/process_mentions_service.rb2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/services/process_mentions_service.rb b/app/services/process_mentions_service.rb @@ -17,7 +17,7 @@ class ProcessMentionsService < BaseService mentioned_account = nil end - next match if mentioned_account.nil? || (mentioned_account.ostatus? && status.stream_entry.hidden?) + next match if mentioned_account.nil? || (!mentioned_account.local? && mentioned_account.ostatus? && status.stream_entry.hidden?) mentioned_account.mentions.where(status: status).first_or_create(status: status) "@#{mentioned_account.acct}"