diff options
Diffstat (limited to 'client/src/assets/player/peertube-plugin.ts')
-rw-r--r-- | client/src/assets/player/peertube-plugin.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/assets/player/peertube-plugin.ts b/client/src/assets/player/peertube-plugin.ts index f83d9094a..aacbf5f6e 100644 --- a/client/src/assets/player/peertube-plugin.ts +++ b/client/src/assets/player/peertube-plugin.ts | |||
@@ -52,12 +52,12 @@ class PeerTubePlugin extends Plugin { | |||
52 | this.player.ready(() => { | 52 | this.player.ready(() => { |
53 | const playerOptions = this.player.options_ | 53 | const playerOptions = this.player.options_ |
54 | 54 | ||
55 | if (this.player.webtorrent) { | 55 | if (options.mode === 'webtorrent') { |
56 | this.player.webtorrent().on('resolutionChange', (_: any, d: any) => this.handleResolutionChange(d)) | 56 | this.player.webtorrent().on('resolutionChange', (_: any, d: any) => this.handleResolutionChange(d)) |
57 | this.player.webtorrent().on('autoResolutionChange', (_: any, d: any) => this.trigger('autoResolutionChange', d)) | 57 | this.player.webtorrent().on('autoResolutionChange', (_: any, d: any) => this.trigger('autoResolutionChange', d)) |
58 | } | 58 | } |
59 | 59 | ||
60 | if (this.player.p2pMediaLoader) { | 60 | if (options.mode === 'p2p-media-loader') { |
61 | this.player.p2pMediaLoader().on('resolutionChange', (_: any, d: any) => this.handleResolutionChange(d)) | 61 | this.player.p2pMediaLoader().on('resolutionChange', (_: any, d: any) => this.handleResolutionChange(d)) |
62 | } | 62 | } |
63 | 63 | ||