xtrime-ru / TelegramApiServer

Fast, simple, async php telegram api server: MadelineProto + Amp HTTP Server
https://tg.i-c-a.su
MIT License
576 stars 130 forks source link

Method getMediaPreview fails to find preview #169

Closed LadyB0y closed 3 weeks ago

LadyB0y commented 1 month ago

I checked the code of this method and it seems that it just assumes that the last field of $message['media'] will contain the actual media object:

$media = $message['media'][array_key_last($message['media'])];

But this is not true and most of the time it fails.

xtrime-ru commented 3 weeks ago

Thanks. This is because recently telegram changed api to support different quality of video. Added fix in this commit, please update.