Skip to content

Commit

Permalink
fix widget pool tracklist retrieval for album page
Browse files Browse the repository at this point in the history
  • Loading branch information
dweymouth committed May 31, 2024
1 parent 379af9c commit 84d9372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/browsing/albumpage.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func newAlbumPage(
a.header = NewAlbumPageHeader(a)
}
a.header.page = a
if t := a.pool.Obtain(util.WidgetTypeTracklist); t != nil {
if t := a.pool.Obtain(util.WidgetTypeCompactTracklist); t != nil {
a.tracklist = t.(*widgets.Tracklist)
a.tracklist.Reset()
} else {
Expand Down

0 comments on commit 84d9372

Please sign in to comment.