diff --git a/CHANGELOG.md b/CHANGELOG.md index 56e7256..a60a5a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,3 +18,10 @@ All notable changes to the **GetAnyMessage** project will be documented in this - source code button url. --- + +## [v1.0.2] - 2026-01-15 + +### Added: +- Update statUsers in: **src/Handlers/AdminPanel.php** + +--- diff --git a/src/Handlers/AdminPanel.php b/src/Handlers/AdminPanel.php index ac5f6c6..8fe5479 100644 --- a/src/Handlers/AdminPanel.php +++ b/src/Handlers/AdminPanel.php @@ -95,7 +95,7 @@ public function statUsers(int $senderId, int $msgid): void foreach ($dialogs as $peer) { try { - $info = $this->getInfo($peer); + $info = $this->context->getInfo($peer); if (!isset($info['type'])) continue; switch ($info['type']) { case 'channel': $numChannels++; break;