diff options
author | kontrollanten <6680299+kontrollanten@users.noreply.github.com> | 2021-03-31 11:26:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-31 11:26:32 +0200 |
commit | 58b9ce3080c12678e8c1c28c08da09d6ea60011d (patch) | |
tree | 10e501ba791e67febd47b397729ba5debb81a85c /client/src/assets/player/peertube-player-manager.ts | |
parent | d794137057fc5fcea10ddd29f82e79ee2412fea4 (diff) | |
download | PeerTube-58b9ce3080c12678e8c1c28c08da09d6ea60011d.tar.gz PeerTube-58b9ce3080c12678e8c1c28c08da09d6ea60011d.tar.zst PeerTube-58b9ce3080c12678e8c1c28c08da09d6ea60011d.zip |
Resume videos for non-logged in users (#3885)
* client: resume videos for non-logged in users
closes #3866
* fix build for embeded
* Update client/src/app/app.component.ts
* fix review comments
Diffstat (limited to 'client/src/assets/player/peertube-player-manager.ts')
-rw-r--r-- | client/src/assets/player/peertube-player-manager.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/src/assets/player/peertube-player-manager.ts b/client/src/assets/player/peertube-player-manager.ts index 1d335805b..119dec379 100644 --- a/client/src/assets/player/peertube-player-manager.ts +++ b/client/src/assets/player/peertube-player-manager.ts | |||
@@ -106,6 +106,8 @@ export interface CommonOptions extends CustomizationOptions { | |||
106 | 106 | ||
107 | videoCaptions: VideoJSCaption[] | 107 | videoCaptions: VideoJSCaption[] |
108 | 108 | ||
109 | videoUUID: string | ||
110 | |||
109 | userWatching?: UserWatching | 111 | userWatching?: UserWatching |
110 | 112 | ||
111 | serverUrl: string | 113 | serverUrl: string |
@@ -231,7 +233,8 @@ export class PeertubePlayerManager { | |||
231 | subtitle: commonOptions.subtitle, | 233 | subtitle: commonOptions.subtitle, |
232 | videoCaptions: commonOptions.videoCaptions, | 234 | videoCaptions: commonOptions.videoCaptions, |
233 | stopTime: commonOptions.stopTime, | 235 | stopTime: commonOptions.stopTime, |
234 | isLive: commonOptions.isLive | 236 | isLive: commonOptions.isLive, |
237 | videoUUID: commonOptions.videoUUID | ||
235 | } | 238 | } |
236 | } | 239 | } |
237 | 240 | ||