Fix more subtle bugs with first_or_create
This commit is contained in:
parent
48aeacd5f9
commit
580b91c387
2 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ class ProcessMentionsService < BaseService
|
|||
mentioned_account = follow_remote_account_service.("#{match.first}")
|
||||
end
|
||||
|
||||
mentioned_account.mentions.first_or_create(status: status)
|
||||
mentioned_account.mentions.where(status: status).first_or_create(status: status)
|
||||
end
|
||||
|
||||
status.mentions.each do |mentioned_account|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue