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.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/client/src/standalone/videos/embed-api.ts b/client/src/standalone/videos/embed-api.ts
index 94e39ec29..75174f2f8 100644
--- a/client/src/standalone/videos/embed-api.ts
+++ b/client/src/standalone/videos/embed-api.ts
@@ -140,12 +140,14 @@ export class PeerTubeEmbedApi {
140 }) 140 })
141 141
142 // PeerTube specific capabilities 142 // PeerTube specific capabilities
143
144 if (this.isWebtorrent()) { 143 if (this.isWebtorrent()) {
145 this.embed.player.webtorrent().on('autoResolutionUpdate', () => this.loadWebTorrentResolutions()) 144 this.embed.player.webtorrent().on('autoResolutionUpdate', () => this.loadWebTorrentResolutions())
146 this.embed.player.webtorrent().on('videoFileUpdate', () => this.loadWebTorrentResolutions()) 145 this.embed.player.webtorrent().on('videoFileUpdate', () => this.loadWebTorrentResolutions())
146
147 this.loadWebTorrentResolutions()
147 } else { 148 } else {
148 this.embed.player.p2pMediaLoader().on('resolutionChange', () => this.loadP2PMediaLoaderResolutions()) 149 this.embed.player.p2pMediaLoader().on('resolutionChange', () => this.loadP2PMediaLoaderResolutions())
150 this.embed.player.p2pMediaLoader().on('resolutionsLoaded', () => this.loadP2PMediaLoaderResolutions())
149 } 151 }
150 152
151 this.embed.player.on('volumechange', () => { 153 this.embed.player.on('volumechange', () => {
@@ -207,6 +209,6 @@ export class PeerTubeEmbedApi {
207 } 209 }
208 210
209 private isWebtorrent () { 211 private isWebtorrent () {
210 return this.embed.player.webtorrent 212 return !!this.embed.player.webtorrent
211 } 213 }
212} 214}