aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/standalone/videos/embed-api.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/standalone/videos/embed-api.ts')
-rw-r--r--client/src/standalone/videos/embed-api.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/src/standalone/videos/embed-api.ts b/client/src/standalone/videos/embed-api.ts
index c5fbe07fa..194465d4a 100644
--- a/client/src/standalone/videos/embed-api.ts
+++ b/client/src/standalone/videos/embed-api.ts
@@ -85,12 +85,14 @@ export class PeerTubeEmbedApi {
85 setInterval(() => { 85 setInterval(() => {
86 const position = this.element.currentTime 86 const position = this.element.currentTime
87 const volume = this.element.volume 87 const volume = this.element.volume
88 const duration = this.element.duration
88 89
89 this.channel.notify({ 90 this.channel.notify({
90 method: 'playbackStatusUpdate', 91 method: 'playbackStatusUpdate',
91 params: { 92 params: {
92 position, 93 position,
93 volume, 94 volume,
95 duration: this.embed.player.duration(),
94 playbackState: currentState 96 playbackState: currentState
95 } 97 }
96 }) 98 })