Skip to content

Commit

Permalink
ZenHub #1389 - Fix Missing Conversations In Shared Manager's List
Browse files Browse the repository at this point in the history
ZenHub #1389 - Fix Missing Conversations In Shared Manager's List
  • Loading branch information
telusdcinco committed Jan 29, 2025
1 parent cc55070 commit 2eeded6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/ConversationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function index(Request $request, $viewType = 'conversations')
->select('shared_id AS id')
->pluck('id');

$reporteeNshared = $reporteeIds->union($sharedIds)->toArray();
$reporteeNshared = $reporteeIds->merge($sharedIds)->toArray();


//get historic team members
Expand Down

0 comments on commit 2eeded6

Please sign in to comment.