In detailed status view, take displayMedia setting into account when changing media

Fixes #819
master
Thibaut Girka 6 years ago committed by ThibG
parent a100f05687
commit 86527024aa
  1. 2
      app/javascript/flavours/glitch/components/media_gallery.js

@ -232,7 +232,7 @@ export default class MediaGallery extends React.PureComponent {
componentWillReceiveProps (nextProps) {
if (!is(nextProps.media, this.props.media)) {
this.setState({ visible: !nextProps.sensitive });
this.setState({ visible: nextProps.revealed === undefined ? (displayMedia !== 'hide_all' && !nextProps.sensitive || displayMedia === 'show_all') : nextProps.revealed });
}
}

Loading…
Cancel
Save