Skip to content

Commit

Permalink
uth: wrong no of args
Browse files Browse the repository at this point in the history
  • Loading branch information
punxaphil committed Feb 4, 2024
1 parent 4a71437 commit 8b400b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sections/media-browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class MediaBrowser extends LitElement {
}

private async getFavorites(player: MediaPlayer) {
let favorites = await this.mediaBrowseService.getFavorites(player, this.config);
let favorites = await this.mediaBrowseService.getFavorites(player);
favorites.sort((a, b) => this.sortOnTopFavoritesThenAlphabetically(a.title, b.title));
favorites = [
...(this.config.customSources?.[this.activePlayer.id]?.map(MediaBrowser.createSource) || []),
Expand Down

0 comments on commit 8b400b9

Please sign in to comment.