about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/video/index.js
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-07-15 21:07:53 +0200
committerGitHub <noreply@github.com>2020-07-15 21:07:53 +0200
commitbfed7dd5f3127f08ece3070bd67f5737933bac1a (patch)
tree1475db20ee48561da82e8fb5cc78592e14294248 /app/javascript/mastodon/features/video/index.js
parent6f798eb574e8521c3ac4ab01248e99a77509a72e (diff)
Fix error when closing a playing audio or video modal (#14310)
Diffstat (limited to 'app/javascript/mastodon/features/video/index.js')
-rw-r--r--app/javascript/mastodon/features/video/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/mastodon/features/video/index.js b/app/javascript/mastodon/features/video/index.js
index fb12567f0..99dcdca22 100644
--- a/app/javascript/mastodon/features/video/index.js
+++ b/app/javascript/mastodon/features/video/index.js
@@ -182,6 +182,8 @@ class Video extends React.PureComponent {
 
   _updateTime () {
     requestAnimationFrame(() => {
+      if (!this.video) return;
+
       this.handleTimeUpdate();
 
       if (!this.state.paused) {