Browse Source

Fixed ANOTHER first_or_create bug. Seriously who came up with that API smh

closed-social-glitch-2
Eugen Rochko 8 years ago
parent
commit
48aeacd5f9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/services/process_feed_service.rb

+ 1
- 1
app/services/process_feed_service.rb View File

@ -48,7 +48,7 @@ class ProcessFeedService < BaseService
mentioned_account = Account.find_local(href.path.gsub('/users/', ''))
unless mentioned_account.nil?
mentioned_account.mentions.first_or_create(status: status)
mentioned_account.mentions.where(status: status).first_or_create(status: status)
end
end
end

Loading…
Cancel
Save