diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-05-26 19:55:58 +0200 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-11-19 15:32:53 -0600 |
commit | a6888a2d9d3ef9d2634363b388a96ce3f08ae273 (patch) | |
tree | 6548bc8473dfe1697f8f47c7c8bfec96f7b76eb0 /app | |
parent | 0564c07f50551c38953add2a9c12d03eea520bd5 (diff) |
Fix video player regressions introduced by blurhash merge
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/flavours/glitch/features/video/index.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/app/javascript/flavours/glitch/features/video/index.js b/app/javascript/flavours/glitch/features/video/index.js index 3dd296c3c..b73ea0b07 100644 --- a/app/javascript/flavours/glitch/features/video/index.js +++ b/app/javascript/flavours/glitch/features/video/index.js @@ -306,9 +306,6 @@ export default class Video extends React.PureComponent { if (this.video && this.state.revealed && this.props.preventPlayback && !prevProps.preventPlayback) { this.video.pause(); } - } - - componentDidUpdate (prevProps) { if (prevProps.blurhash !== this.props.blurhash && this.props.blurhash) { this._decode(); } |