From a2c69e0fed680324256e366d8f3d40b1b0cee030 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Fri, 16 Dec 2022 12:31:22 +0100 Subject: [PATCH] Fix favorite button in playlists --- Shared/Playlists/PlaylistsView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Shared/Playlists/PlaylistsView.swift b/Shared/Playlists/PlaylistsView.swift index f03ba9fc..c15ba068 100644 --- a/Shared/Playlists/PlaylistsView.swift +++ b/Shared/Playlists/PlaylistsView.swift @@ -222,6 +222,7 @@ struct PlaylistsView: View { if let account = accounts.current { FavoriteButton(item: FavoriteItem(section: .playlist(account.id, currentPlaylist.id))) + .id(currentPlaylist.id) } } }