mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 08:44:49 +00:00
Merge pull request #1376 from pixelfed/frontend-ui-refactor
Update InboxValidator
This commit is contained in:
commit
ec688525dc
1 changed files with 4 additions and 4 deletions
|
@ -70,8 +70,8 @@ class InboxValidator implements ShouldQueue
|
|||
{
|
||||
$body = $this->payload;
|
||||
$bodyDecoded = $payload;
|
||||
$signature = $headers['signature'];
|
||||
$date = $headers['date'];
|
||||
$signature = is_array($headers['signature']) ? $headers['signature'][0] : $headers['signature'];
|
||||
$date = is_array($headers['date']) ? $headers['date'][0] : $headers['date'];
|
||||
if(!$signature) {
|
||||
abort(400, 'Missing signature header');
|
||||
}
|
||||
|
@ -116,8 +116,8 @@ class InboxValidator implements ShouldQueue
|
|||
|
||||
protected function blindKeyRotation($headers, $profile, $payload)
|
||||
{
|
||||
$signature = $headers['signature'];
|
||||
$date = $headers['date'];
|
||||
$signature = is_array($headers['signature']) ? $headers['signature'][0] : $headers['signature'];
|
||||
$date = is_array($headers['date']) ? $headers['date'][0] : $headers['date'];
|
||||
if(!$signature) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue