I removed a step from a campaign, but now I get the following error in the background cron job:
NoMethodError: undefined method `action' for nil:NilClass
It's happening at this line:
|
step.action.new(user: user, step: step).deliver_now |
def perform(_campaign, user, step)
step.action.new(user: user, step: step).deliver_now
end
step is nil, so this fails.
I removed a step from a campaign, but now I get the following error in the background cron job:
NoMethodError: undefined method `action' for nil:NilClass
It's happening at this line:
heya//lib/heya/campaigns/step_action_job.rb
Line 11 in f472417
stepis nil, so this fails.