Fix WebUI crash on sensitive preview card with no preview thumbnail (#14260)
Fixes #14257remotes/1727458204337373841/tmp_refs/heads/signup-info-prompt
parent
961789d511
commit
2581715491
|
@ -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…
Reference in New Issue