mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-25 23:09:21 +00:00
[Glitch] Perform deep comparison for card data when receiving new props
Prevents embedded players from resetting when interacting with the toot
This commit is contained in:
parent
772b4ba24c
commit
ff827c1f38
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ export default class Card extends React.PureComponent {
|
||||||
};
|
};
|
||||||
|
|
||||||
componentWillReceiveProps (nextProps) {
|
componentWillReceiveProps (nextProps) {
|
||||||
if (this.props.card !== nextProps.card) {
|
if (!Immutable.is(this.props.card, nextProps.card)) {
|
||||||
this.setState({ embedded: false });
|
this.setState({ embedded: false });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue