mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 04:35:12 +01:00
Lua fixes
This commit is contained in:
parent
65f1add013
commit
a01f399116
@ -159,7 +159,7 @@ class Lua
|
||||
public static function convert_objects(&$data)
|
||||
{
|
||||
array_walk_recursive($data, function (&$value, $key) {
|
||||
if (is_object($value)) {
|
||||
if (is_object($value) && !( $value instanceof \phpseclib\Math\BigInteger)) {
|
||||
$newval = [];
|
||||
foreach (get_class_methods($value) as $name) {
|
||||
$newval[$name] = [$value, $name];
|
||||
|
Loading…
Reference in New Issue
Block a user