fix status response with blank format
This commit is contained in:
parent
1343f72f7a
commit
4a9941e734
@ -194,7 +194,7 @@ class FeedController < ApplicationController
|
|||||||
output = @feed.to_xml
|
output = @feed.to_xml
|
||||||
elsif params[:format] == 'csv'
|
elsif params[:format] == 'csv'
|
||||||
@csv_headers = Feed.select_options(@channel, params)
|
@csv_headers = Feed.select_options(@channel, params)
|
||||||
elsif (params[:format] == 'txt' || params[:format] == 'text' || params[:format] == 'html')
|
elsif (params[:format] == 'txt' || params[:format] == 'text' || params[:format] == 'html' || params[:format].blank?)
|
||||||
output = add_prepend_append(@feed["field#{params[:field_id]}"])
|
output = add_prepend_append(@feed["field#{params[:field_id]}"])
|
||||||
else
|
else
|
||||||
output = @feed.to_json
|
output = @feed.to_json
|
||||||
|
Loading…
Reference in New Issue
Block a user