wzq 5 년 전
부모
커밋
590aab9c0e
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      app/Repositories/Post/PostRepository.php

+ 2 - 2
app/Repositories/Post/PostRepository.php

@@ -268,7 +268,7 @@ class PostRepository
             $data['parent_id'] = $request['parent_id'];
             $data['reply_uid'] = $comment->uid;
             $data['reply_username'] = $comment->username;
-            $this->rabbitMqUtil->push('add_message_one', [
+            $this->rabbitMqUtil->push('add_message', [
                 'uid' => $comment->uid,
                 'message_show_type' => 'post_reply_main',
                 'param' => [
@@ -277,7 +277,7 @@ class PostRepository
                 ]
             ]);
         }else{
-            $this->rabbitMqUtil->push('add_message_one', [
+            $this->rabbitMqUtil->push('add_message', [
                 'uid' => $post->uid,
                 'message_show_type' => 'post_comment',
                 'param' => [