about summary refs log tree commit diff
path: root/app/controllers/activitypub
diff options
context:
space:
mode:
authorabcang <abcang1015@gmail.com>2018-02-08 13:00:45 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-02-08 05:00:45 +0100
commitcf32f7da5c5af7c86af3cab89d18cdbe7b35f4a2 (patch)
tree5d9291daf06aba7de041f0d079931b7795264d08 /app/controllers/activitypub
parent2bb393684baf5da1112923db7bcda920d606be78 (diff)
Fix response of signature_verification_failure_reason (#6441)
Diffstat (limited to 'app/controllers/activitypub')
-rw-r--r--app/controllers/activitypub/inboxes_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/activitypub/inboxes_controller.rb b/app/controllers/activitypub/inboxes_controller.rb
index 7d0bc74d3..af51e32d5 100644
--- a/app/controllers/activitypub/inboxes_controller.rb
+++ b/app/controllers/activitypub/inboxes_controller.rb
@@ -11,7 +11,7 @@ class ActivityPub::InboxesController < Api::BaseController
       process_payload
       head 202
     else
-      [signature_verification_failure_reason, 401]
+      render plain: signature_verification_failure_reason, status: 401
     end
   end