Browse Source

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

Fixes #14257
master
ThibG 3 years ago
committed by GitHub
parent
commit
2581715491
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
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

@ -106,7 +106,7 @@ export default class Card extends React.PureComponent {
componentDidUpdate (prevProps) {
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();
}
}

Loading…
Cancel
Save