Browse Source

Update InboxValidator job

Daniel Supernault 6 năm trước cách đây
mục cha
commit
10f897b59f
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      app/Jobs/InboxPipeline/InboxValidator.php

+ 1 - 1
app/Jobs/InboxPipeline/InboxValidator.php

@@ -58,7 +58,7 @@ class InboxValidator implements ShouldQueue
 
         if($this->verifySignature($headers, $profile, $payload) == true) {
             InboxWorker::dispatch($headers, $profile, $payload);
-        } else if($this->blindKeyRotation($headers, $profile) == true) {
+        } else if($this->blindKeyRotation($headers, $profile, $payload) == true) {
             InboxWorker::dispatch($headers, $profile, $payload);
         } else {
             return;