1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-30 05:38:57 +01:00

Fixup layerdiff

This commit is contained in:
Daniil Gentili 2023-07-20 22:14:25 +02:00
parent 1b76f591b1
commit f20312b943

View File

@ -42,10 +42,10 @@ function getTL($layer)
}
function getUrl($constructor, $type)
{
$changed = Tools::markdownEscape(str_replace('.', '_', $constructor));
$orig = $constructor;
$constructor = Tools::markdownEscape($constructor);
//return "[$constructor](https://github.com/danog/MadelineProtoDocs/blob/geochats/docs/API_docs/$type/$changed.md)";
return "[$constructor](https://docs.madelineproto.xyz/API_docs/$type/$changed.html)";
return "[$constructor](https://docs.madelineproto.xyz/API_docs/$type/$orig.html)";
}
$old = getTL($argv[1]);
$new = getTL($argv[2]);
@ -108,7 +108,7 @@ foreach (['methods', 'constructors'] as $type) {
}
}
$bot = new \danog\MadelineProto\API('layer.madeline');
$bot = new \danog\MadelineProto\API('testing.madeline');
$bot->start();
foreach (explode("\n\n", $res) as $chunk) {