From 3fd94e590d8768f9c86d95678507439af8b281e8 Mon Sep 17 00:00:00 2001 From: Manuel Ruwe Date: Sun, 18 Dec 2022 17:54:36 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20Remove=20console=20log=20debug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/clients/jellyfin/jellyfin.search.service.ts | 2 -- src/commands/play.comands.ts | 1 - 2 files changed, 3 deletions(-) diff --git a/src/clients/jellyfin/jellyfin.search.service.ts b/src/clients/jellyfin/jellyfin.search.service.ts index b9776d6..f342ea2 100644 --- a/src/clients/jellyfin/jellyfin.search.service.ts +++ b/src/clients/jellyfin/jellyfin.search.service.ts @@ -37,8 +37,6 @@ export class JellyfinSearchService { ], }); - console.log(SearchHints); - if (status !== 200) { this.logger.error(`Jellyfin Search failed with status code ${status}`); return []; diff --git a/src/commands/play.comands.ts b/src/commands/play.comands.ts index dbc1140..dbead9e 100644 --- a/src/commands/play.comands.ts +++ b/src/commands/play.comands.ts @@ -192,7 +192,6 @@ export class PlayItemCommand break; case 'album': const album = await this.jellyfinSearchService.getItemsByAlbum(id); - console.log(album); album.SearchHints.forEach((item) => { this.enqueueSingleTrack(item as BaseJellyfinAudioPlayable, bitrate); });