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,9 +68,9 @@ class Message < ActiveRecord::Base
|
|||
end
|
||||
|
||||
def recipients
|
||||
User.find(recipients_ids)
|
||||
User.where(id: recipients_ids)
|
||||
end
|
||||
|
||||
|
||||
def deliver
|
||||
for user in recipients
|
||||
if user.receive_email?
|
||||
|
|
Loading…
Reference in a new issue