• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Message/CounterServiceLegacy.php
  • Класс: BitrixImV2MessageCounterServiceLegacy
  • Вызов: CounterServiceLegacy::countUnreadChats
protected function countUnreadChats(): void
{
	$unreadChats = $this->getUnreadChats();

	foreach ($unreadChats as $unreadChat)
	{
		if ($unreadChat['ITEM_TYPE'] === IM_MESSAGE_PRIVATE)
		{
			$this->setUnreadDialog((int)$unreadChat['DIALOG_ID']);
		}
		else
		{
			$this->setUnreadChat((int)$unreadChat['CHAT_ID'], $unreadChat['IS_MUTED'] === 'Y');
		}
	}
}