Fix WebUI crash on sensitive preview card with no preview thumbnail ()

Fixes 
lolsob-rspec
ThibG 2020-07-08 09:22:23 +02:00 committed by GitHub
parent f70098cadd
commit ad1b26b4bc
1 changed files with 1 additions and 1 deletions
app/javascript/mastodon/features/status/components

View File

@ -106,7 +106,7 @@ export default class Card extends React.PureComponent {
componentDidUpdate (prevProps) { componentDidUpdate (prevProps) {
const { card } = this.props; const { card } = this.props;
if (card.get('blurhash') && (!prevProps.card || prevProps.card.get('blurhash') !== card.get('blurhash'))) { if (card.get('blurhash') && (!prevProps.card || prevProps.card.get('blurhash') !== card.get('blurhash')) && this.canvas) {
this._decode(); this._decode();
} }
} }