aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/assets/player/peertube-videojs-plugin.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/assets/player/peertube-videojs-plugin.ts')
-rw-r--r--client/src/assets/player/peertube-videojs-plugin.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/src/assets/player/peertube-videojs-plugin.ts b/client/src/assets/player/peertube-videojs-plugin.ts
index 35a347e99..fc07c35d6 100644
--- a/client/src/assets/player/peertube-videojs-plugin.ts
+++ b/client/src/assets/player/peertube-videojs-plugin.ts
@@ -466,7 +466,9 @@ class PeerTubePlugin extends Plugin {
466 return this.trigger('torrentInfo', { 466 return this.trigger('torrentInfo', {
467 downloadSpeed: this.torrent.downloadSpeed, 467 downloadSpeed: this.torrent.downloadSpeed,
468 numPeers: this.torrent.numPeers, 468 numPeers: this.torrent.numPeers,
469 uploadSpeed: this.torrent.uploadSpeed 469 uploadSpeed: this.torrent.uploadSpeed,
470 downloaded: this.torrent.downloaded,
471 uploaded: this.torrent.uploaded
470 }) 472 })
471 }, this.CONSTANTS.INFO_SCHEDULER) 473 }, this.CONSTANTS.INFO_SCHEDULER)
472 } 474 }