mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-02 12:48:45 +00:00
Limit chat list image count
This commit is contained in:
parent
423a0aacbf
commit
9e69303a88
@ -1007,6 +1007,9 @@ class ChatListItemNode: ItemListRevealOptionsItemNode {
|
||||
let contentImageFillSize = CGSize(width: 8.0, height: contentImageSize.height)
|
||||
_ = contentImageFillSize
|
||||
for message in messages {
|
||||
if contentImageSpecs.count >= 3 {
|
||||
break
|
||||
}
|
||||
inner: for media in message.media {
|
||||
if let image = media as? TelegramMediaImage {
|
||||
if let _ = largestImageRepresentation(image.representations) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user