mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-30 04:59:00 +01:00
Fixes
This commit is contained in:
parent
e218632ffd
commit
f78309e2f4
2
docs
2
docs
@ -1 +1 @@
|
||||
Subproject commit b7104e4c18ccec8c0fc94950f3d73768ba927fda
|
||||
Subproject commit 52232ea10ed26c86e5ca6bd6b3c217a9fecc986f
|
@ -1568,9 +1568,9 @@ final class MTProto implements TLCallback, LoggerGetter, SettingsGetter
|
||||
if (!\extension_loaded('uv')) {
|
||||
$warning .= "<p>".htmlentities(sprintf(Lang::$current_lang['extensionRecommended'], 'uv'))."</p>";
|
||||
}
|
||||
if (Magic::$hasBasedirLimitation) {
|
||||
$warning .= "<p>".htmlentities(Lang::$current_lang['extensionRecommended'])."</p>";
|
||||
}
|
||||
/*if (Magic::$hasBasedirLimitation) {
|
||||
$warning .= "<p>".htmlentities(Lang::$current_lang['baseDirLimitation'])."</p>";
|
||||
}*/
|
||||
if (Lang::$currentPercentage !== 100) {
|
||||
$warning .= "<p>".sprintf(Lang::$current_lang['translate_madelineproto_web'], Lang::$currentPercentage)."</p>";
|
||||
}
|
||||
|
6752
src/TL/TLParser.php
6752
src/TL/TLParser.php
File diff suppressed because it is too large
Load Diff
@ -410,10 +410,12 @@ final class Builder
|
||||
|| $arr['predicate'] === 'rpc_result'
|
||||
|| !$arr['encrypted']
|
||||
) && (
|
||||
$arr['predicate'] === 'rpc_error'
|
||||
$arr['predicate'] !== 'rpc_error'
|
||||
)
|
||||
);
|
||||
|
||||
$this->m("deserialize", "return {$this->buildTypes($initial_constructors)};", 'mixed', true, static: false);
|
||||
|
||||
$this->m("deserialize_type_Object", "return {$this->buildTypes($initial_constructors)};", 'mixed', true, static: false);
|
||||
|
||||
$this->w("}\n");
|
||||
|
Loading…
Reference in New Issue
Block a user