Adds add to favorites button in SongRow

This commit is contained in:
2025-02-23 17:58:26 -08:00
parent 8ab927333b
commit d010d68056
8 changed files with 115 additions and 57 deletions

View File

@@ -176,8 +176,8 @@ export class MediaPlayer {
return this.favoritesStore.addFavorite(item);
}
public async removeFavorite(id: number) {
return this.favoritesStore.removeFavorite(id);
public async removeFavorite(filename: string) {
return this.favoritesStore.removeFavorite(filename);
}
public async clearFavorites() {