FIX: genrating invite link should not send email

This commit is contained in:
Arpit Jalan 2016-10-07 12:54:11 +05:30
parent 647ee46edf
commit 3d02dc28be
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ class Invite < ActiveRecord::Base
topic = opts[:topic]
group_ids = opts[:group_ids]
send_email = opts[:send_email] || true
send_email = opts[:send_email].nil? ? true : opts[:send_email]
custom_message = opts[:custom_message]
lower_email = Email.downcase(email)