aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/assets
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/assets')
-rw-r--r--client/src/assets/player/stats/stats-card.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/client/src/assets/player/stats/stats-card.ts b/client/src/assets/player/stats/stats-card.ts
index 55d850eda..e76a81a74 100644
--- a/client/src/assets/player/stats/stats-card.ts
+++ b/client/src/assets/player/stats/stats-card.ts
@@ -34,7 +34,6 @@ class StatsCard extends Component {
34 updateInterval: any 34 updateInterval: any
35 35
36 mode: 'webtorrent' | 'p2p-media-loader' 36 mode: 'webtorrent' | 'p2p-media-loader'
37 p2pEnabled: boolean
38 37
39 metadataStore: any = {} 38 metadataStore: any = {}
40 39
@@ -211,7 +210,7 @@ class StatsCard extends Component {
211 210
212 return ` 211 return `
213 ${this.buildElement(player.localize('Player mode'), this.mode || 'HTTP')} 212 ${this.buildElement(player.localize('Player mode'), this.mode || 'HTTP')}
214 ${this.buildElement(player.localize('P2P'), player.localize(this.p2pEnabled ? 'enabled' : 'disabled'))} 213 ${this.buildElement(player.localize('P2P'), player.localize(this.options_.p2pEnabled ? 'enabled' : 'disabled'))}
215 214
216 ${this.buildElement(player.localize('Video UUID'), this.options_.videoUUID)} 215 ${this.buildElement(player.localize('Video UUID'), this.options_.videoUUID)}
217 216