mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update InboxValidator job
This commit is contained in:
parent
21f211d354
commit
0e7f2bd0be
1 changed files with 2 additions and 2 deletions
|
@ -57,9 +57,9 @@ class InboxValidator implements ShouldQueue
|
|||
}
|
||||
|
||||
if($this->verifySignature($headers, $profile, $payload) == true) {
|
||||
InboxWorker::dispatch($headers, $profile, $payload);
|
||||
InboxWorker::dispatchNow($headers, $profile, $payload)->onQueue('high');
|
||||
} else if($this->blindKeyRotation($headers, $profile, $payload) == true) {
|
||||
InboxWorker::dispatch($headers, $profile, $payload);
|
||||
InboxWorker::dispatchNow($headers, $profile, $payload)->onQueue('high');
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue