1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00

Compare commits

...

2 commits

Author SHA1 Message Date
Tiago Peralta
1764dec34a
Merge 6b59494e06 into 549ab089ee 2024-07-31 11:04:47 +00:00
Tiago Peralta
6b59494e06 Fix rendering of images with too small aspect ratios (#29310) 2024-04-04 19:10:23 +01:00

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 () {