about summary refs log tree commit diff
path: root/app/controllers/activitypub/inboxes_controller.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-04-01 21:36:36 +0200
committerGitHub <noreply@github.com>2019-04-01 21:36:36 +0200
commit3f5acc1ab3bc9c5a6c5805901a393ccd3457b909 (patch)
tree4ddadcc66d07a1edfcfb9ff0f9cda7cf107d6b46 /app/controllers/activitypub/inboxes_controller.rb
parent925830d11bb5c132e282f82bdb2ca893d87c9c24 (diff)
parent12dae9d58316bec32adaac016998ab1cf69d2b45 (diff)
Merge pull request #978 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/controllers/activitypub/inboxes_controller.rb')
-rw-r--r--app/controllers/activitypub/inboxes_controller.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/controllers/activitypub/inboxes_controller.rb b/app/controllers/activitypub/inboxes_controller.rb
index 1501b914e..a0b7532c2 100644
--- a/app/controllers/activitypub/inboxes_controller.rb
+++ b/app/controllers/activitypub/inboxes_controller.rb
@@ -32,7 +32,10 @@ class ActivityPub::InboxesController < Api::BaseController
   end
 
   def body
-    @body ||= request.body.read.force_encoding('UTF-8')
+    return @body if defined?(@body)
+    @body = request.body.read.force_encoding('UTF-8')
+    request.body.rewind if request.body.respond_to?(:rewind)
+    @body
   end
 
   def upgrade_account