From a16aee73db627908dc83eb5c29b213ce8d1fab39 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 14 Feb 2018 16:02:16 +0100 Subject: Fix embed lint --- client/src/standalone/videos/embed.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'client/src') 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' import 'videojs-dock/dist/videojs-dock.es.js' import { VideoDetails } from '../../../../shared' -async function loadVideoInfo (videoId: string) { +async function loadVideoInfo (videoId: string): Promise { const response = await fetch(window.location.origin + '/api/v1/videos/' + videoId) - return response.json(); + return response.json() } const urlParts = window.location.href.split('/') @@ -42,6 +42,4 @@ loadVideoInfo(videoId) }) }) }) - .catch(err => { - console.error(err); - }) + .catch(err => console.error(err)) -- cgit v1.2.3