Set default value for Thread's agent ID when a thread is created

This commit is contained in:
Dmitriy Simushev 2014-08-27 13:28:01 +00:00
parent 730dd2f2df
commit 928328f2b0

View File

@ -748,6 +748,7 @@ function chat_start_for_user(
// Create thread
$thread = Thread::create();
$thread->state = Thread::STATE_LOADING;
$thread->agentId = 0;
if ($requested_operator && $requested_operator_online) {
$thread->nextAgent = $requested_operator['operatorid'];
}