feat: Always display timestamp in ImageAttachment component, regardless of download status

This commit is contained in:
k1ngsterr1
2026-01-25 17:38:09 +05:00
parent 3ece5fe84d
commit f58b941a5e

View File

@@ -292,8 +292,7 @@ fun ImageAttachment(
}
}
// Время в правом нижнем углу (только если изображение загружено)
if (downloadStatus == DownloadStatus.DOWNLOADED) {
// Время в правом нижнем углу (всегда показываем, даже когда фото blurred)
Box(
modifier = Modifier
.align(Alignment.BottomEnd)
@@ -354,7 +353,6 @@ fun ImageAttachment(
}
}
}
}
// Оверлей для статуса скачивания
if (downloadStatus != DownloadStatus.DOWNLOADED) {