diff --git a/src/danog/MadelineProto/TL/TLMethod.php b/src/danog/MadelineProto/TL/TLMethod.php index 6d4826d2..01f7cee4 100644 --- a/src/danog/MadelineProto/TL/TLMethod.php +++ b/src/danog/MadelineProto/TL/TLMethod.php @@ -49,7 +49,6 @@ class TLMethod if (isset($this->by_id[$id])) { $method = $this->by_id[$id]; $method['id'] = $id; - $method['params'] = $method['params']; return $method; } @@ -62,7 +61,6 @@ class TLMethod if (isset($this->by_method[$method_name])) { $method = $this->by_id[$this->by_method[$method_name]]; $method['id'] = $this->by_method[$method_name]; - $method['params'] = $method['params']; return $method; }