소스 검색

Update InboxValidator, oof

Daniel Supernault 5 년 전
부모
커밋
2ab58fb723
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      app/Jobs/InboxPipeline/InboxValidator.php

+ 4 - 2
app/Jobs/InboxPipeline/InboxValidator.php

@@ -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;
         }