mirror of https://github.com/procxx/kepka.git
Clear DocumentMedia in ReplyPreview.
This commit is contained in:
parent
44ec55b6a8
commit
d64014c995
|
@ -627,14 +627,16 @@ void DocumentData::updateThumbnails(
|
||||||
loadThumbnail(origin);
|
loadThumbnail(origin);
|
||||||
}
|
}
|
||||||
if (!thumbnail.bytes.isEmpty()) {
|
if (!thumbnail.bytes.isEmpty()) {
|
||||||
|
if (const auto cacheKey = _thumbnailLocation.file().cacheKey()) {
|
||||||
owner().cache().putIfEmpty(
|
owner().cache().putIfEmpty(
|
||||||
_thumbnailLocation.file().cacheKey(),
|
cacheKey,
|
||||||
Storage::Cache::Database::TaggedValue(
|
Storage::Cache::Database::TaggedValue(
|
||||||
base::duplicate(thumbnail.bytes),
|
base::duplicate(thumbnail.bytes),
|
||||||
Data::kImageCacheTag));
|
Data::kImageCacheTag));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const ImageLocation &DocumentData::thumbnailLocation() const {
|
const ImageLocation &DocumentData::thumbnailLocation() const {
|
||||||
return _thumbnailLocation;
|
return _thumbnailLocation;
|
||||||
|
|
|
@ -17,8 +17,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
namespace Data {
|
namespace Data {
|
||||||
|
|
||||||
ReplyPreview::ReplyPreview(not_null<DocumentData*> document)
|
ReplyPreview::ReplyPreview(not_null<DocumentData*> document)
|
||||||
: _document(document)
|
: _document(document) {
|
||||||
, _documentMedia(_document->createMediaView()) {
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ReplyPreview::ReplyPreview(not_null<PhotoData*> photo)
|
ReplyPreview::ReplyPreview(not_null<PhotoData*> photo)
|
||||||
|
@ -59,7 +58,13 @@ void ReplyPreview::prepare(not_null<Image*> image, Images::Options options) {
|
||||||
}
|
}
|
||||||
|
|
||||||
Image *ReplyPreview::image(Data::FileOrigin origin) {
|
Image *ReplyPreview::image(Data::FileOrigin origin) {
|
||||||
|
if (_checked) {
|
||||||
|
return _image.get();
|
||||||
|
}
|
||||||
if (_document) {
|
if (_document) {
|
||||||
|
if (!_documentMedia) {
|
||||||
|
_documentMedia = _document->createMediaView();
|
||||||
|
}
|
||||||
const auto thumbnail = _documentMedia->thumbnail();
|
const auto thumbnail = _documentMedia->thumbnail();
|
||||||
if (!_image || (!_good && thumbnail)) {
|
if (!_image || (!_good && thumbnail)) {
|
||||||
const auto option = _document->isVideoMessage()
|
const auto option = _document->isVideoMessage()
|
||||||
|
@ -73,6 +78,10 @@ Image *ReplyPreview::image(Data::FileOrigin origin) {
|
||||||
prepare(image, option | Images::Option::Blurred);
|
prepare(image, option | Images::Option::Blurred);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (thumbnail || !_document->hasThumbnail()) {
|
||||||
|
_checked = true;
|
||||||
|
_documentMedia = nullptr;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
Assert(_photo != nullptr);
|
Assert(_photo != nullptr);
|
||||||
|
|
|
@ -27,6 +27,7 @@ private:
|
||||||
|
|
||||||
std::unique_ptr<Image> _image;
|
std::unique_ptr<Image> _image;
|
||||||
bool _good = false;
|
bool _good = false;
|
||||||
|
bool _checked = false;
|
||||||
DocumentData *_document = nullptr;
|
DocumentData *_document = nullptr;
|
||||||
PhotoData *_photo = nullptr;
|
PhotoData *_photo = nullptr;
|
||||||
std::shared_ptr<DocumentMedia> _documentMedia;
|
std::shared_ptr<DocumentMedia> _documentMedia;
|
||||||
|
|
|
@ -133,10 +133,12 @@ int Gif::resizeGetHeight(int width) {
|
||||||
|
|
||||||
void Gif::paint(Painter &p, const QRect &clip, const PaintContext *context) const {
|
void Gif::paint(Painter &p, const QRect &clip, const PaintContext *context) const {
|
||||||
const auto document = getShownDocument();
|
const auto document = getShownDocument();
|
||||||
|
const auto displayLoading = document->displayLoading();
|
||||||
|
|
||||||
ensureDataMediaCreated(document);
|
ensureDataMediaCreated(document);
|
||||||
_dataMedia->automaticLoad(fileOrigin(), nullptr);
|
_dataMedia->automaticLoad(fileOrigin(), nullptr);
|
||||||
|
|
||||||
bool loaded = _dataMedia->loaded(), loading = document->loading(), displayLoading = document->displayLoading();
|
bool loaded = _dataMedia->loaded(), loading = document->loading();
|
||||||
if (loaded
|
if (loaded
|
||||||
&& !_gif
|
&& !_gif
|
||||||
&& !_gif.isBad()
|
&& !_gif.isBad()
|
||||||
|
|
Loading…
Reference in New Issue