Update InboxValidator job

pull/1380/head
Daniel Supernault 6 years ago
parent e89c7d8056
commit 3679332114
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -48,12 +48,12 @@ class InboxValidator implements ShouldQueue
$profile = Profile::whereNull('domain')->whereUsername($username)->first();
if(empty($profile)) {
return;
if(empty($profile) || empty($headers) || empty($payload)) {
return true;
}
if($profile->status != null) {
return;
return true;
}
if($this->verifySignature($headers, $profile, $payload) == true) {

Loading…
Cancel
Save