Browse Source

Perform deep comparison for card data when receiving new props (#9270)

Fixes #9226
pull/4/head
ThibG 5 years ago
committed by Eugen Rochko
parent
commit
bbd8fdd185
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/mastodon/features/status/components/card.js

+ 1
- 1
app/javascript/mastodon/features/status/components/card.js View File

@ -73,7 +73,7 @@ export default class Card extends React.PureComponent {
};
componentWillReceiveProps (nextProps) {
if (this.props.card !== nextProps.card) {
if (!this.props.card.equals(nextProps.card)) {
this.setState({ embedded: false });
}
}

Loading…
Cancel
Save