refactor: remove console logs

This commit is contained in:
Fallenbagel
2024-04-12 20:02:41 +05:00
parent 016c50680c
commit 6293dc2b70

View File

@@ -186,7 +186,6 @@ class JellyfinAPI {
public async getLibraries(): Promise<JellyfinLibrary[]> {
try {
const mediaFolders = await this.axios.get<any>(`/Library/MediaFolders`);
console.log(mediaFolders.data.Items);
return this.mapLibraries(mediaFolders.data.Items);
} catch (mediaFoldersError) {