Skip to content

Commit

Permalink
fix: remove unnecessary console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
dot-mike committed Dec 14, 2024
1 parent 275084a commit e06633f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/back/responses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,6 @@ export function registerRequestCallbacks(state: BackState, init: () => Promise<v
});

state.socketServer.register(BackIn.GET_PLAYLISTS, async () => {
console.log('finding playlists?');
return filterPlaylists(state.playlists, state.preferences.browsePageShowExtreme);
});

Expand Down
1 change: 0 additions & 1 deletion src/back/util/search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export function createSearchFilter(query: QueryData, preferences: AppPreferences
break;
}

console.log(`Order by: ${orderBy}`);
if (advancedFilter.playlistOrder && playlist !== undefined) {
search.order.column = GameSearchSortable.CUSTOM;
} else {
Expand Down

0 comments on commit e06633f

Please sign in to comment.