mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-26 21:34:41 +01:00
Small fix for IPC exceptions
This commit is contained in:
parent
6b5ba25354
commit
53f1fac201
@ -51,7 +51,7 @@ final class API extends AbstractAPI
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public const RELEASE = '8.0.0-beta186';
|
||||
public const RELEASE = '8.0.0-beta187';
|
||||
/**
|
||||
* We're not logged in.
|
||||
*
|
||||
|
@ -69,7 +69,12 @@ final class ExitFailure
|
||||
|
||||
foreach ($props as $class => $subprops) {
|
||||
$class = new ReflectionClass($class);
|
||||
foreach ($subprops as $key => $value) {
|
||||
foreach ($class->getProperties() as $prop) {
|
||||
$key = $prop->getName();
|
||||
if (!\array_key_exists($key, $subprops)) {
|
||||
continue;
|
||||
}
|
||||
$value = $subprops[$key];
|
||||
if ($key === 'previous') {
|
||||
if ($value instanceof self) {
|
||||
$value = $value->getException();
|
||||
@ -80,8 +85,7 @@ final class ExitFailure
|
||||
$value = "$value\n\nClient TL trace:".$prev->getTLTrace();
|
||||
}
|
||||
try {
|
||||
$key = $refl->getProperty($key);
|
||||
$key->setValue($exception, $value);
|
||||
$prop->setValue($exception, $value);
|
||||
} catch (\Throwable) {
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user