about summary refs log tree commit diff
path: root/app/controllers/api_controller.rb
diff options
context:
space:
mode:
author839 <8398a7@gmail.com>2017-04-18 22:57:46 +0900
committerEugen <eugen@zeonfederated.com>2017-04-18 15:57:46 +0200
commite2a1b574ab4ec5dd07dbc5c317bcc3718f13c19b (patch)
treea2e265cad28a2d239c6f88a6cf5d6f3cc81426fe /app/controllers/api_controller.rb
parent880590ad0d5ea8553af288bc6ed261d34e712f31 (diff)
Avoid dynamic methods due to processing speed (#2080)
Diffstat (limited to 'app/controllers/api_controller.rb')
-rw-r--r--app/controllers/api_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api_controller.rb b/app/controllers/api_controller.rb
index 478d21bc7..957e3c315 100644
--- a/app/controllers/api_controller.rb
+++ b/app/controllers/api_controller.rb
@@ -73,7 +73,7 @@ class ApiController < ApplicationController
   end
 
   def current_user
-    super || current_resource_owner
+    current_resource_owner || super
   rescue ActiveRecord::RecordNotFound
     nil
   end