From 9329eade299541039fd46ccb9c112a62300f1d38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Nyi=CC=81ri?= Date: Mon, 7 Jun 2021 00:30:17 +0200 Subject: [PATCH] Remove: Left over console logs --- dist/plex-meets-homeassistant.js | 2 -- src/plex-meets-homeassistant.ts | 2 -- 2 files changed, 4 deletions(-) diff --git a/dist/plex-meets-homeassistant.js b/dist/plex-meets-homeassistant.js index 16699ae..5839e2a 100644 --- a/dist/plex-meets-homeassistant.js +++ b/dist/plex-meets-homeassistant.js @@ -20332,7 +20332,6 @@ class PlexMeetsHomeAssistant extends HTMLElement { fullscreenTrailer.style.visibility = 'hidden'; }; this.showDetails = async (data) => { - console.log(data); this.detailsShown = true; const top = this.getTop(); if (this.detailElem) { @@ -20742,7 +20741,6 @@ class PlexMeetsHomeAssistant extends HTMLElement { return 0; }; this.getMovieElement = (data, hasAdditionalData = false) => { - console.log(data); let thumbURL = ''; if (lodash.isEqual(data.type, 'episode')) { thumbURL = `${this.plexProtocol}://${this.config.ip}:${this.config.port}/photo/:/transcode?width=${CSS_STYLE.expandedWidth}&height=${CSS_STYLE.expandedHeight}&minSize=1&upscale=1&url=${data.grandparentThumb}&X-Plex-Token=${this.config.token}`; diff --git a/src/plex-meets-homeassistant.ts b/src/plex-meets-homeassistant.ts index be51e93..cda22a6 100644 --- a/src/plex-meets-homeassistant.ts +++ b/src/plex-meets-homeassistant.ts @@ -658,7 +658,6 @@ class PlexMeetsHomeAssistant extends HTMLElement { }; showDetails = async (data: any): Promise => { - console.log(data); this.detailsShown = true; const top = this.getTop(); if (this.detailElem) { @@ -1131,7 +1130,6 @@ class PlexMeetsHomeAssistant extends HTMLElement { }; getMovieElement = (data: any, hasAdditionalData = false): HTMLDivElement => { - console.log(data); let thumbURL = ''; if (_.isEqual(data.type, 'episode')) { thumbURL = `${this.plexProtocol}://${this.config.ip}:${this.config.port}/photo/:/transcode?width=${CSS_STYLE.expandedWidth}&height=${CSS_STYLE.expandedHeight}&minSize=1&upscale=1&url=${data.grandparentThumb}&X-Plex-Token=${this.config.token}`;