mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-08 19:35:11 +01:00
Fix rendering of images with too small aspect ratios (#29310)
This commit is contained in:
parent
1c87cb8019
commit
6b59494e06
@ -287,7 +287,9 @@ class MediaGallery extends PureComponent {
|
|||||||
|
|
||||||
isFullSizeEligible() {
|
isFullSizeEligible() {
|
||||||
const { media } = this.props;
|
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 () {
|
render () {
|
||||||
|
Loading…
Reference in New Issue
Block a user