Skip to content
Snippets Groups Projects
Commit 1c258538 authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

Use already-known remote user data if resolving temporarily fails in mentions (#5702)

parent 546257bc
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,11 @@ class ProcessMentionsService < BaseService
mentioned_account = nil
end
if mentioned_account.nil?
username, domain = match.first.split('@')
mentioned_account = Account.find_remote(username, domain)
end
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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment