From abeb0b9c5bf1a3e42194ba794ddb1fae9dbbb0b9 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Sun, 5 Feb 2017 15:15:48 +0100 Subject: [PATCH] SEO --- README.md | 15 +++++++++++++++ docs/index.md | 15 +++++++++++++++ .../MadelineProto/MTProtoTools/MessageHandler.php | 2 +- 3 files changed, 31 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 82558619..4b3fd163 100644 --- a/README.md +++ b/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). +## 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 ### Installation diff --git a/docs/index.md b/docs/index.md index 9a6f2a19..bafdd911 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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). +## 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 ### Installation diff --git a/src/danog/MadelineProto/MTProtoTools/MessageHandler.php b/src/danog/MadelineProto/MTProtoTools/MessageHandler.php index ccc0a592..04ddeacf 100644 --- a/src/danog/MadelineProto/MTProtoTools/MessageHandler.php +++ b/src/danog/MadelineProto/MTProtoTools/MessageHandler.php @@ -81,7 +81,7 @@ trait MessageHandler $server_salt = \danog\PHP\Struct::unpack('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);