1 files changed, 3 insertions, 0 deletions
diff --git a/src/timeline/EventStore.cpp b/src/timeline/EventStore.cpp
index 1293245c..867b9cd2 100644
--- a/src/timeline/EventStore.cpp
+++ b/src/timeline/EventStore.cpp
@@ -722,6 +722,9 @@ EventStore::decryptEvent(const IdIndex &idx,
auto encInfo = mtx::accessors::file(decryptionResult.event.value());
if (encInfo)
emit newEncryptedImage(encInfo.value());
+ encInfo = mtx::accessors::thumbnail_file(decryptionResult.event.value());
+ if (encInfo)
+ emit newEncryptedImage(encInfo.value());
return asCacheEntry(std::move(decryptionResult));
}
|