aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/video-watch.component.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-03-01 14:14:56 +0100
committerChocobozzz <me@florianbigard.com>2018-03-01 14:14:56 +0100
commit1198a08cc76c9b25209e776a3cfc529584cbdd67 (patch)
tree886e9995cba7b7954cce4911f6388f7fc45fc248 /client/src/app/videos/+video-watch/video-watch.component.ts
parent901637bb87f5eb0518fb7ca69d98b53ed918339e (diff)
downloadPeerTube-1198a08cc76c9b25209e776a3cfc529584cbdd67.tar.gz
PeerTube-1198a08cc76c9b25209e776a3cfc529584cbdd67.tar.zst
PeerTube-1198a08cc76c9b25209e776a3cfc529584cbdd67.zip
Fix playback rate
Diffstat (limited to 'client/src/app/videos/+video-watch/video-watch.component.ts')
-rw-r--r--client/src/app/videos/+video-watch/video-watch.component.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/videos/+video-watch/video-watch.component.ts b/client/src/app/videos/+video-watch/video-watch.component.ts
index 66ef0399a..b1dd3d10b 100644
--- a/client/src/app/videos/+video-watch/video-watch.component.ts
+++ b/client/src/app/videos/+video-watch/video-watch.component.ts
@@ -341,7 +341,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
341 const videojsOptions = { 341 const videojsOptions = {
342 controls: true, 342 controls: true,
343 autoplay: this.isAutoplay(), 343 autoplay: this.isAutoplay(),
344 playbackRates: [0.5, 1, 1.25, 1.5, 2], 344 playbackRates: [ 0.5, 1, 1.5, 2 ],
345 plugins: { 345 plugins: {
346 peertube: { 346 peertube: {
347 videoFiles: this.video.files, 347 videoFiles: this.video.files,