Fixed nil object error on Meals page

This commit is contained in:
Godwin 2016-07-18 10:18:55 -07:00 committed by GitHub
parent 310f2f3d46
commit be50d165b3

View File

@ -804,7 +804,7 @@ class ConferencesController < ApplicationController
@time = nil
@length = 1.5
when :meals
@meals = Hash[@this_conference.meals.map{ |k, v| [k.to_i, v] }].sort.to_h
@meals = Hash[(@this_conference.meals || {}).map{ |k, v| [k.to_i, v] }].sort.to_h
when :workshop_times
get_block_data
@workshop_blocks << {