• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Message/Reaction/ReactionService.php
  • Класс: BitrixImV2MessageReactionReactionService
  • Вызов: ReactionService::isMessageLiveChat
private function isMessageLiveChat(): bool
{
	$chat = $this->message->getChat();
	$isLiveChat = $chat->getEntityType() === 'LIVECHAT';
	$isToLiveChat = false;
	if ($chat->getEntityType() === 'LINES')
	{
		[$connectorType] = explode('|', $chat->getEntityId());
		$isToLiveChat = $connectorType === 'livechat';
	}

	return $isLiveChat || $isToLiveChat;
}