Merge pull request #372 from aboutsource/hotfix/message-recipients-with-missing-users
Do not fail upon missing users in Message#recipients.
This commit is contained in:
commit
6af83bbc77
1 changed files with 2 additions and 2 deletions
|
@ -68,7 +68,7 @@ class Message < ActiveRecord::Base
|
|||
end
|
||||
|
||||
def recipients
|
||||
User.find(recipients_ids)
|
||||
User.where(id: recipients_ids)
|
||||
end
|
||||
|
||||
def deliver
|
||||
|
|
Loading…
Reference in a new issue