Ensure request.body isn't emptied out before signature verification (#10432)
Fixes #10429
This commit is contained in:
parent
59cce07601
commit
68c797bece
1 changed files with 4 additions and 1 deletions
|
@ -32,7 +32,10 @@ class ActivityPub::InboxesController < Api::BaseController
|
||||||
end
|
end
|
||||||
|
|
||||||
def body
|
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
|
end
|
||||||
|
|
||||||
def upgrade_account
|
def upgrade_account
|
||||||
|
|
Loading…
Reference in a new issue