Browse Source

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

Follow-up on #14260 which only fixed half the call sites
master
ThibG 3 years ago
committed by GitHub
parent
commit
d308a863fb
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

@ -94,7 +94,7 @@ export default class Card extends React.PureComponent {
componentDidMount () {
window.addEventListener('resize', this.handleResize, { passive: true });
if (this.props.card && this.props.card.get('blurhash')) {
if (this.props.card && this.props.card.get('blurhash') && this.canvas) {
this._decode();
}
}

Loading…
Cancel
Save