diff options
author | ThibG <thib@sitedethib.com> | 2017-11-07 22:15:15 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-11-07 22:15:15 +0100 |
commit | 889ada5ee257f7cecce55bd2366161d0a673a4f8 (patch) | |
tree | 1610be01119f13a90d67281f9f589799257a92f7 /app | |
parent | 3f16caaa50beae1ea4a4e2df5820f5cca627d2be (diff) |
Fix process mentions for local users, as local users are considered to use OStatus (#5618)
Diffstat (limited to 'app')
-rw-r--r-- | app/services/process_mentions_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/process_mentions_service.rb b/app/services/process_mentions_service.rb index 65e6b1361..c1ff68209 100644 --- 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}" |