mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-22 14:20:20 +00:00
Various Fixes
This commit is contained in:
@@ -1249,8 +1249,17 @@ final class ChatMessageInteractiveMediaNode: ASDisplayNode, GalleryItemTransitio
|
||||
automaticPlayback = false
|
||||
}
|
||||
|
||||
if let actualFetchStatus = self.actualFetchStatus, automaticPlayback || message.forwardInfo != nil {
|
||||
fetchStatus = actualFetchStatus
|
||||
if let actualFetchStatus = self.actualFetchStatus {
|
||||
if automaticPlayback || message.forwardInfo != nil {
|
||||
fetchStatus = actualFetchStatus
|
||||
} else {
|
||||
for attribute in message.attributes {
|
||||
if let attribute = attribute as? ForwardOptionsMessageAttribute, attribute.hideNames {
|
||||
fetchStatus = actualFetchStatus
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
let gifTitle = game != nil ? strings.Message_Game.uppercased() : strings.Message_Animation.uppercased()
|
||||
|
||||
Reference in New Issue
Block a user