1
0
mirror of https://github.com/danog/MadelineProto.git synced 2025-01-23 04:51:13 +01:00

Update release

This commit is contained in:
Daniil Gentili 2023-07-25 14:22:30 +02:00
parent ebe06ad96a
commit 2e1b564afc
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ final class API extends AbstractAPI
*
* @var string
*/
public const RELEASE = '8.0.0-beta120';
public const RELEASE = '8.0.0-beta121';
/**
* Secret chat was not found.
*

View File

@ -37,7 +37,7 @@ final class LightState
public function __construct(MTProto $API)
{
if ($API->hasEventHandler()) {
$this->eventHandler = \get_class($API->getEventHandler());
$this->eventHandler = $API->getEventHandler()::class;
}
}