about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/video/index.js
diff options
context:
space:
mode:
authorNolan Lawson <nolan@nolanlawson.com>2017-10-07 18:06:43 -0700
committerEugen Rochko <eugen@zeonfederated.com>2017-10-08 03:06:43 +0200
commitdb33a53ee8a617937ce9f9e1e79a1c5ac00de126 (patch)
tree346ff35a94588d421b2e31825285e650afe341f1 /app/javascript/mastodon/features/video/index.js
parent7de6d269d21e0ed7a3ede7c3d17089726a29d841 (diff)
Video preload should be a string (#5267)
Diffstat (limited to 'app/javascript/mastodon/features/video/index.js')
-rw-r--r--app/javascript/mastodon/features/video/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/video/index.js b/app/javascript/mastodon/features/video/index.js
index 519a2aac9..8b83fb66b 100644
--- a/app/javascript/mastodon/features/video/index.js
+++ b/app/javascript/mastodon/features/video/index.js
@@ -233,7 +233,7 @@ export default class Video extends React.PureComponent {
           ref={this.setVideoRef}
           src={src}
           poster={preview}
-          preload={startTime ? true : null}
+          preload={startTime ? 'auto' : 'none'}
           loop
           role='button'
           tabIndex='0'