From f7bd73bf73ab3e1c333529f7cc8b049564466bcc Mon Sep 17 00:00:00 2001 From: Samer Zaki Date: Thu, 27 Jan 2022 04:50:42 +0200 Subject: [PATCH] updating --- src/Services/ConversationService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/ConversationService.php b/src/Services/ConversationService.php index 04947a4f..9ee5bd20 100644 --- a/src/Services/ConversationService.php +++ b/src/Services/ConversationService.php @@ -195,6 +195,6 @@ public function getParticipation($participant = null) { $participant = $participant ?? $this->participant; - return $participant->participation()->first(); + return $participant->participation()->where('conversation_id', $this->conversation->id)->first(); } }