mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 12:30:48 +00:00
Fixed profle query error when there are zero results
This commit is contained in:
parent
e7d5662bb6
commit
7a41f1294c
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ class Match < ActiveRecord::Base
|
|||
end
|
||||
|
||||
def send_notifications
|
||||
Profile.all(include: :user, conditions: "notify_any_match = 1").find_each do |p|
|
||||
Profile.includes(:user).where(notify_any_match: 1).find_each do |p|
|
||||
Notifications.match p.user, self if p.user
|
||||
end
|
||||
contester2.team.teamers.active.each do |teamer|
|
||||
|
|
Loading…
Reference in a new issue