mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-08-30 22:25:12 +00:00
Fixed display of recent posts with some types documents in statistics.
This commit is contained in:
@@ -105,7 +105,8 @@ MessagePreview::MessagePreview(
|
||||
}
|
||||
processPreview();
|
||||
}
|
||||
if (!_photoMedia && !_documentMedia) {
|
||||
if ((!_documentMedia || _documentMedia->thumbnailSize().isNull())
|
||||
&& !_photoMedia) {
|
||||
const auto userpic = Ui::CreateChild<Ui::UserpicButton>(
|
||||
this,
|
||||
item->history()->peer,
|
||||
@@ -200,6 +201,7 @@ void MessagePreview::processPreview() {
|
||||
session->downloaderTaskFinished()
|
||||
) | rpl::start_with_next([=] {
|
||||
const auto computed = computeThumbInfo();
|
||||
const auto guard = gsl::finally([&] { update(); });
|
||||
if (!computed.image) {
|
||||
if (_documentMedia && !_documentMedia->owner()->hasThumbnail()) {
|
||||
_preview = QImage();
|
||||
|
Reference in New Issue
Block a user