fix channel video_id validation when updating

This commit is contained in:
Lee Lawlor
2015-02-13 11:07:18 -05:00
parent 167f1ea6ae
commit c0bc92b7e2
4 changed files with 12 additions and 3 deletions

View File

@ -202,7 +202,8 @@ class ChannelsController < ApplicationController
@channel.assign_attributes(channel_params)
if !@channel.valid?
flash[:alert] = @channel.errors.full_messages.join(', ')
@channel.errors.add(:base, t(:channel_video_type_blank))
flash[:alert] = @channel.errors.full_messages.join('. ')
redirect_to channel_path(@channel.id, :anchor => "channelsettings") and return
end