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); });