diff --git a/CHANGELOG.md b/CHANGELOG.md index f23e4268..16577322 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ MadelineProto now features async, for **incredible speed improvements**, and **parallel processing**. Powered by [amphp](https://amphp.org), MadelineProto wraps the AMPHP APIs to provide a simpler generator-based async API. + * Fully rewritten connection stack, with support for websockets, stuff * updates * simultaneous method calls @@ -46,6 +47,7 @@ Powered by [amphp](https://amphp.org), MadelineProto wraps the AMPHP APIs to pro * no more php 5 * reset PTS to 0 * arrayaccess on args +* increased flood wait Things to expect in the next releases: docs for get mime funcs diff --git a/src/danog/MadelineProto/MTProto.php b/src/danog/MadelineProto/MTProto.php index affbe426..253c4ebd 100644 --- a/src/danog/MadelineProto/MTProto.php +++ b/src/danog/MadelineProto/MTProto.php @@ -707,7 +707,7 @@ class MTProto extends AsyncConstruct implements TLCallback 'authorization' => 5, // How many times should I try to generate an authorization key before throwing an exception 'response' => 5, - ], 'flood_timeout' => ['wait_if_lt' => 20], 'msg_array_limit' => [ + ], 'flood_timeout' => ['wait_if_lt' => 10*60], 'msg_array_limit' => [ // How big should be the arrays containing the incoming and outgoing messages? 'incoming' => 100, 'outgoing' => 100, diff --git a/tests/makephar.sh b/tests/makephar.sh index 0d56ebae..99c45ee9 100755 --- a/tests/makephar.sh +++ b/tests/makephar.sh @@ -17,7 +17,6 @@ echo '{ "minimum-stability":"dev", "require": { "danog/madelineproto": "dev-master", - "amphp/byte-stream": "dev-master#bc191a8 as 1.5" }, "repositories": [ {