🔥 Remove console log debug

This commit is contained in:
Manuel Ruwe 2022-12-18 17:54:36 +01:00
parent 1a1e12506f
commit 3fd94e590d
2 changed files with 0 additions and 3 deletions

View File

@ -37,8 +37,6 @@ export class JellyfinSearchService {
],
});
console.log(SearchHints);
if (status !== 200) {
this.logger.error(`Jellyfin Search failed with status code ${status}`);
return [];

View File

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