summaryrefslogtreecommitdiff
path: root/app/workers/admin_email_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/admin_email_worker.rb')
-rw-r--r--app/workers/admin_email_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/admin_email_worker.rb b/app/workers/admin_email_worker.rb
index c84ac60d777..8d589c03259 100644
--- a/app/workers/admin_email_worker.rb
+++ b/app/workers/admin_email_worker.rb
@@ -18,7 +18,7 @@ class AdminEmailWorker # rubocop:disable Scalability/IdempotentWorker
# rubocop: disable CodeReuse/ActiveRecord
def send_repository_check_mail
repository_check_failed_count = Project.where(last_repository_check_failed: true).count
- return if repository_check_failed_count.zero?
+ return if repository_check_failed_count == 0
RepositoryCheckMailer.notify(repository_check_failed_count).deliver_now
end