Bugfix
This commit is contained in:
parent
936729ba45
commit
883ace5d3c
@ -126,7 +126,8 @@ You can find examples for nearly every MadelineProto function in
|
|||||||
* [Download to file](https://docs.madelineproto.xyz/docs/FILES.html#download-to-file)
|
* [Download to file](https://docs.madelineproto.xyz/docs/FILES.html#download-to-file)
|
||||||
* [Download to stream](https://docs.madelineproto.xyz/docs/FILES.html#download-to-stream)
|
* [Download to stream](https://docs.madelineproto.xyz/docs/FILES.html#download-to-stream)
|
||||||
* [Download to callback](https://docs.madelineproto.xyz/docs/FILES.html#download-to-callback)
|
* [Download to callback](https://docs.madelineproto.xyz/docs/FILES.html#download-to-callback)
|
||||||
* [Download to browser (streaming)](https://docs.madelineproto.xyz/docs/FILES.html#download-to-browser-with-streams)
|
* [Download to http-server](https://docs.madelineproto.xyz/docs/FILES.html#download-to-http-server)
|
||||||
|
* [Download to browser](https://docs.madelineproto.xyz/docs/FILES.html#download-to-browser)
|
||||||
* [Getting progress](https://docs.madelineproto.xyz/docs/FILES.html#getting-progress)
|
* [Getting progress](https://docs.madelineproto.xyz/docs/FILES.html#getting-progress)
|
||||||
* [Getting info about chats](https://docs.madelineproto.xyz/docs/CHAT_INFO.html)
|
* [Getting info about chats](https://docs.madelineproto.xyz/docs/CHAT_INFO.html)
|
||||||
* [Full chat info with full list of participants](https://docs.madelineproto.xyz/docs/CHAT_INFO.html#getPwrChat-now-fully-async)
|
* [Full chat info with full list of participants](https://docs.madelineproto.xyz/docs/CHAT_INFO.html#getPwrChat-now-fully-async)
|
||||||
|
2
docs
2
docs
@ -1 +1 @@
|
|||||||
Subproject commit de466b0b0962007f79b4405bdd21b3a0dd08f9ee
|
Subproject commit 1523eda477bfd325bd78590d17e36359365f2530
|
@ -70,7 +70,8 @@ abstract class AbstractAPIFactory extends AsyncConstruct
|
|||||||
*/
|
*/
|
||||||
protected function exportNamespace(string $namespace = ''): self
|
protected function exportNamespace(string $namespace = ''): self
|
||||||
{
|
{
|
||||||
$class = \array_reverse(\array_values(\class_parents(static::class)))[3];
|
$class = \array_reverse(\array_values(\class_parents(static::class)))[$namespace ? 2 : 3];
|
||||||
|
|
||||||
$instance = new $class;
|
$instance = new $class;
|
||||||
$instance->namespace = $namespace ? $namespace.'.' : '';
|
$instance->namespace = $namespace ? $namespace.'.' : '';
|
||||||
self::link($instance, $this);
|
self::link($instance, $this);
|
||||||
|
Loading…
Reference in New Issue
Block a user