This commit is contained in:
Tiago Peralta 2024-05-03 15:06:50 +00:00 committed by GitHub
commit d486ea9c3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -287,7 +287,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 () {