mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Update InboxValidator, oof
This commit is contained in:
parent
011e2c964c
commit
2ab58fb723
1 changed files with 4 additions and 2 deletions
|
@ -64,9 +64,11 @@ class InboxValidator implements ShouldQueue
|
|||
}
|
||||
|
||||
if($this->verifySignature($headers, $profile, $payload) == true) {
|
||||
(new Inbox($headers, $profile, $payload))->handle()
|
||||
(new Inbox($headers, $profile, $payload))->handle();
|
||||
return;
|
||||
} else if($this->blindKeyRotation($headers, $profile, $payload) == true) {
|
||||
(new Inbox($headers, $profile, $payload))->handle()
|
||||
(new Inbox($headers, $profile, $payload))->handle();
|
||||
return;
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue