From 753dc22e8bd4360674a4a4144cdbc4e3aeda956d Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Sun, 12 Jan 2014 13:00:57 -0500 Subject: [PATCH] fix syntax error --- web/app/controllers/api_recordings_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/controllers/api_recordings_controller.rb b/web/app/controllers/api_recordings_controller.rb index d081e0123..3a8986fb2 100644 --- a/web/app/controllers/api_recordings_controller.rb +++ b/web/app/controllers/api_recordings_controller.rb @@ -123,7 +123,7 @@ class ApiRecordingsController < ApiController if liker.errors.any? render :json => { :message => "Unexpected error occurred" }, :status => 500 else - render :json => {} :status => 201 + render :json => {}, :status => 201 end end