From b3b397311e6fdbce2e27093cef41a57dc7eb6d8f Mon Sep 17 00:00:00 2001 From: Lee Lawlor Date: Tue, 16 Sep 2014 15:15:59 -0400 Subject: [PATCH] fix typo --- app/controllers/channels_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/channels_controller.rb b/app/controllers/channels_controller.rb index 2a6749e..2f1d71f 100644 --- a/app/controllers/channels_controller.rb +++ b/app/controllers/channels_controller.rb @@ -147,7 +147,7 @@ class ChannelsController < ApplicationController respond_to do |format| format.html format.json { render :json => @channels.not_social.to_json(Channel.private_options) } - format.xml { render :xml => @channel.not_socials.to_xml(Channel.private_options) } + format.xml { render :xml => @channel.not_social.to_xml(Channel.private_options) } end end