You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DateTime.parse("#{@date.strftime}T#{time.hour}:#{time.min}:00+0000") unless time == nil
I think it should be DateTime.parse("#{@date.strftime('%F')} #{time.hour}:#{time.min}:00+0000") unless time == nil
This line of code throws an exception:
DateTime.parse("#{@date.strftime}T#{time.hour}:#{time.min}:00+0000") unless time == nilI think it should be
DateTime.parse("#{@date.strftime('%F')} #{time.hour}:#{time.min}:00+0000") unless time == nil