| 254 | } |
| 255 | |
| 256 | void DocumentMedia::setThumbnail(QImage thumbnail) { |
| 257 | _thumbnail = std::make_unique<Image>(std::move(thumbnail)); |
| 258 | _owner->session().notifyDownloaderTaskFinished(); |
| 259 | } |
| 260 | |
| 261 | QByteArray DocumentMedia::videoThumbnailContent() const { |
| 262 | return _videoThumbnailBytes; |
no test coverage detected