SEO
This commit is contained in:
parent
9a7cda471d
commit
abeb0b9c5b
15
README.md
15
README.md
@ -22,6 +22,21 @@ The MadelineProto API documentation (mtproto tl scheme) can be found [here](http
|
|||||||
|
|
||||||
The MadelineProto API documentations (old layers) can be found [here](https://github.com/danog/MadelineProto/tree/master/old_docs).
|
The MadelineProto API documentations (old layers) can be found [here](https://github.com/danog/MadelineProto/tree/master/old_docs).
|
||||||
|
|
||||||
|
## Acknowledgements
|
||||||
|
|
||||||
|
While writing this client, I looked at many projects for inspiration and help. Here's the full list:
|
||||||
|
|
||||||
|
* [tgl](https://github.com/vysheng/tgl)
|
||||||
|
|
||||||
|
* [Kotlogram](https://github.com/badoualy/kotlogram)
|
||||||
|
|
||||||
|
* [Webogram](https://github.com/zhukov/webogram)
|
||||||
|
|
||||||
|
* [Telethon](https://github.com/LonamiWebs/Telethon/)
|
||||||
|
|
||||||
|
Thanks to the devs that contributed to these projects, MadelineProto is now an easy, well-written and complete MTProto client.
|
||||||
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
@ -26,6 +26,21 @@ The MadelineProto API documentation (mtproto tl scheme) can be found [here](http
|
|||||||
|
|
||||||
The MadelineProto API documentations (old layers) can be found [here](https://github.com/danog/MadelineProto/tree/master/old_docs).
|
The MadelineProto API documentations (old layers) can be found [here](https://github.com/danog/MadelineProto/tree/master/old_docs).
|
||||||
|
|
||||||
|
## Acknowledgements
|
||||||
|
|
||||||
|
While writing this client, I looked at many projects for inspiration and help. Here's the full list:
|
||||||
|
|
||||||
|
* [tgl](https://github.com/vysheng/tgl)
|
||||||
|
|
||||||
|
* [Kotlogram](https://github.com/badoualy/kotlogram)
|
||||||
|
|
||||||
|
* [Webogram](https://github.com/zhukov/webogram)
|
||||||
|
|
||||||
|
* [Telethon](https://github.com/LonamiWebs/Telethon/)
|
||||||
|
|
||||||
|
Thanks to the devs that contributed to these projects, MadelineProto is now an easy, well-written and complete MTProto client.
|
||||||
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
@ -81,7 +81,7 @@ trait MessageHandler
|
|||||||
|
|
||||||
$server_salt = \danog\PHP\Struct::unpack('<q', substr($decrypted_data, 0, 8))[0];
|
$server_salt = \danog\PHP\Struct::unpack('<q', substr($decrypted_data, 0, 8))[0];
|
||||||
if ($server_salt != $this->datacenter->temp_auth_key['server_salt']) {
|
if ($server_salt != $this->datacenter->temp_auth_key['server_salt']) {
|
||||||
\danog\MadelineProto\Logger::log(['WARNING: Server salt mismatch (my server salt '.$this->datacenter->temp_auth_key['server_salt'].' is not equal to server server salt '.$server_salt.').'], \danog\MadelineProto\Logger::WARNING);
|
//\danog\MadelineProto\Logger::log(['WARNING: Server salt mismatch (my server salt '.$this->datacenter->temp_auth_key['server_salt'].' is not equal to server server salt '.$server_salt.').'], \danog\MadelineProto\Logger::WARNING);
|
||||||
}
|
}
|
||||||
|
|
||||||
$session_id = substr($decrypted_data, 8, 8);
|
$session_id = substr($decrypted_data, 8, 8);
|
||||||
|
Loading…
Reference in New Issue
Block a user