diff options
author | Chocobozzz <me@florianbigard.com> | 2022-04-05 14:03:52 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2022-04-15 09:49:35 +0200 |
commit | 384ba8b77a8e4805c099f5ea12b41c2ca5776e26 (patch) | |
tree | 6b517033d9265d283677b85e0f57486e0e7fd8cf /client/src/assets/player/shared/manager-options | |
parent | b211106695bb82f6c32e53306081b5262c3d109d (diff) | |
download | PeerTube-384ba8b77a8e4805c099f5ea12b41c2ca5776e26.tar.gz PeerTube-384ba8b77a8e4805c099f5ea12b41c2ca5776e26.tar.zst PeerTube-384ba8b77a8e4805c099f5ea12b41c2ca5776e26.zip |
Support videos stats in client
Diffstat (limited to 'client/src/assets/player/shared/manager-options')
-rw-r--r-- | client/src/assets/player/shared/manager-options/manager-options-builder.ts | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/client/src/assets/player/shared/manager-options/manager-options-builder.ts b/client/src/assets/player/shared/manager-options/manager-options-builder.ts index 29e851c1c..e454c719e 100644 --- a/client/src/assets/player/shared/manager-options/manager-options-builder.ts +++ b/client/src/assets/player/shared/manager-options/manager-options-builder.ts | |||
@@ -32,14 +32,18 @@ export class ManagerOptionsBuilder { | |||
32 | peertube: { | 32 | peertube: { |
33 | mode: this.mode, | 33 | mode: this.mode, |
34 | autoplay, // Use peertube plugin autoplay because we could get the file by webtorrent | 34 | autoplay, // Use peertube plugin autoplay because we could get the file by webtorrent |
35 | videoViewUrl: commonOptions.videoViewUrl, | 35 | |
36 | videoDuration: commonOptions.videoDuration, | 36 | ...pick(commonOptions, [ |
37 | userWatching: commonOptions.userWatching, | 37 | 'videoViewUrl', |
38 | subtitle: commonOptions.subtitle, | 38 | 'authorizationHeader', |
39 | videoCaptions: commonOptions.videoCaptions, | 39 | 'startTime', |
40 | stopTime: commonOptions.stopTime, | 40 | 'videoDuration', |
41 | isLive: commonOptions.isLive, | 41 | 'subtitle', |
42 | videoUUID: commonOptions.videoUUID | 42 | 'videoCaptions', |
43 | 'stopTime', | ||
44 | 'isLive', | ||
45 | 'videoUUID' | ||
46 | ]) | ||
43 | } | 47 | } |
44 | } | 48 | } |
45 | 49 | ||