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
|
@ -62,7 +62,7 @@ class ProcessInteractionService < BaseService
|
|||
end
|
||||
|
||||
def favourite!(xml, from_account)
|
||||
status(xml).favourites.first_or_create!(account: from_account)
|
||||
status(xml).favourites.where(account: from_account).first_or_create!(account: from_account)
|
||||
end
|
||||
|
||||
def add_post!(body, account)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue