Show music video watch status on artist & album pages (#1209)

## Description
Show the watched indicator and favorite icon on music videos on both the
artist or album detail pages.

### Related issues
Fixes #1206 

### Testing
Quick emulator testing

## Screenshots
N/A, same indicators as the rest of the app

## AI or LLM usage
None
This commit is contained in:
Ray 2026-04-06 18:17:04 -04:00 committed by GitHub
parent ac13ce5713
commit edaf06afd0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View file

@ -539,6 +539,9 @@ fun AlbumDetailsPage(
onClick = onClick, onClick = onClick,
onLongClick = onLongClick, onLongClick = onLongClick,
aspectRatio = AspectRatios.WIDE, aspectRatio = AspectRatios.WIDE,
played = item?.played ?: false,
playPercent = item?.data?.userData?.playedPercentage ?: 0.0,
favorite = item?.favorite ?: false,
modifier = mod, modifier = mod,
) )
}, },

View file

@ -568,6 +568,9 @@ fun ArtistDetailsPage(
onClick = onClick, onClick = onClick,
onLongClick = onLongClick, onLongClick = onLongClick,
aspectRatio = AspectRatios.WIDE, aspectRatio = AspectRatios.WIDE,
played = item?.played ?: false,
playPercent = item?.data?.userData?.playedPercentage ?: 0.0,
favorite = item?.favorite ?: false,
modifier = mod, modifier = mod,
) )
}, },