This commit is contained in:
Tiago Peralta 2025-05-06 15:03:45 +00:00 committed by GitHub
commit 7bc644a87e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -293,7 +293,9 @@ class MediaGallery extends PureComponent {
isFullSizeEligible() {
const { media } = this.props;
return media.size === 1 && media.getIn([0, 'meta', 'small', 'aspect']);
const aspect = media.getIn([0, 'meta', 'small', 'aspect']);
const minAspectRatioThreshold = 3/2;
return media.size === 1 && typeof aspect === 'number' && aspect >= minAspectRatioThreshold;
}
render () {