From 23ca2f7bc942f06ed5653b41f119b84c54f1948d Mon Sep 17 00:00:00 2001
From: Chocobozzz <me@florianbigard.com>
Date: Fri, 30 Jul 2021 11:48:21 +0200
Subject: Fix peertube link button

---
 client/src/assets/player/videojs-components/peertube-link-button.ts | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

(limited to 'client')

diff --git a/client/src/assets/player/videojs-components/peertube-link-button.ts b/client/src/assets/player/videojs-components/peertube-link-button.ts
index 98434898c..c49cee566 100644
--- a/client/src/assets/player/videojs-components/peertube-link-button.ts
+++ b/client/src/assets/player/videojs-components/peertube-link-button.ts
@@ -4,12 +4,9 @@ import { PeerTubeLinkButtonOptions } from '../peertube-videojs-typings'
 
 const Button = videojs.getComponent('Button')
 class PeerTubeLinkButton extends Button {
-  private shortUUID: string
 
   constructor (player: videojs.Player, options?: PeerTubeLinkButtonOptions) {
     super(player, options as any)
-
-    this.shortUUID = options.shortUUID
   }
 
   createEl () {
@@ -39,7 +36,7 @@ class PeerTubeLinkButton extends Button {
   }
 
   private buildLink () {
-    const url = buildVideoLink({ shortUUID: this.shortUUID })
+    const url = buildVideoLink({ shortUUID: (this.options_ as PeerTubeLinkButtonOptions).shortUUID })
 
     return decorateVideoLink({ url, startTime: this.player().currentTime() })
   }
-- 
cgit v1.2.3