yii2-bot-telegram icon indicating copy to clipboard operation
yii2-bot-telegram copied to clipboard

Error: "Setting unknown property: aki\telegram\types\Document::thumbnail" when using SendDocument

Open lucadima15 opened this issue 7 months ago • 0 comments

To solve the issue, I added some code locally in aki\telegram\types\Document class:

  1. Added $_thumbnail property after $_thumb

  2. Added magic methods:

public function getThumbnail() { return $this->_thumbnail; }

public function setThumbnail($value)
{
    $this->_thumbnail = new PhotoSize($value);
}

lucadima15 avatar Jul 02 '24 13:07 lucadima15