about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--app/controllers/api_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/api_controller.rb b/app/controllers/api_controller.rb
index d880400a8..862358d6e 100644
--- a/app/controllers/api_controller.rb
+++ b/app/controllers/api_controller.rb
@@ -30,8 +30,8 @@ class ApiController < ApplicationController
     render json: { error: 'Remote SSL certificate could not be verified' }, status: 503
   end
 
-  def doorkeeper_unauthorized_render_options(*)
-    { json: { error: 'Not authorized' } }
+  def doorkeeper_unauthorized_render_options(error: nil)
+    { json: { error: (error.try(:description) || 'Not authorized') } }
   end
 
   def doorkeeper_forbidden_render_options(*)