1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-24 11:22:42 +01:00

Merge branch 'master' of github.com:freescout-helpdesk/freescout

This commit is contained in:
FreeScout 2020-12-16 23:10:35 -08:00
commit ed0cc6c9be

View File

@ -315,6 +315,12 @@ class ConversationsController extends Controller
}
}
$to = [];
if ($request->get('to')) {
$to = [$request->get('to')];
}
return view('conversations/create', [
'conversation' => $conversation,
'thread' => $thread,
@ -322,7 +328,7 @@ class ConversationsController extends Controller
'folder' => $folder,
'folders' => $mailbox->getAssesibleFolders(),
'after_send' => $after_send,
'to' => [],
'to' => $to,
]);
}