aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--client/src/standalone/videos/embed.ts8
1 files changed, 3 insertions, 5 deletions
diff --git a/client/src/standalone/videos/embed.ts b/client/src/standalone/videos/embed.ts
index d0676968e..3193ae6ef 100644
--- a/client/src/standalone/videos/embed.ts
+++ b/client/src/standalone/videos/embed.ts
@@ -6,9 +6,9 @@ import '../../assets/player/peertube-videojs-plugin'
6import 'videojs-dock/dist/videojs-dock.es.js' 6import 'videojs-dock/dist/videojs-dock.es.js'
7import { VideoDetails } from '../../../../shared' 7import { VideoDetails } from '../../../../shared'
8 8
9async function loadVideoInfo (videoId: string) { 9async function loadVideoInfo (videoId: string): Promise<VideoDetails> {
10 const response = await fetch(window.location.origin + '/api/v1/videos/' + videoId) 10 const response = await fetch(window.location.origin + '/api/v1/videos/' + videoId)
11 return response.json(); 11 return response.json()
12} 12}
13 13
14const urlParts = window.location.href.split('/') 14const urlParts = window.location.href.split('/')
@@ -42,6 +42,4 @@ loadVideoInfo(videoId)
42 }) 42 })
43 }) 43 })
44 }) 44 })
45 .catch(err => { 45 .catch(err => console.error(err))
46 console.error(err);
47 })