Fix full size image not being loaded on first appearance of focused attachment view

This commit is contained in:
Shadowfacts 2023-05-04 21:06:59 -04:00
parent f68d1009e5
commit b6a5a60066
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class AttachmentThumbnailController: ViewController {
}
func loadImageIfNecessary(fullSize: Bool) {
if (gifController != nil) || (image != nil && fullSize == self.fullSize) {
if (gifController != nil) || (image != nil && self.fullSize) {
return
}
self.fullSize = fullSize