music: fix category id

This commit is contained in:
Alexander Capehart 2024-08-29 21:00:13 -06:00
parent 463b02f871
commit 6ff2d55a68
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47

View file

@ -45,7 +45,7 @@ import org.oxycblt.auxio.util.getPlural
sealed interface MediaSessionUID {
data class CategoryItem(val category: Category) : MediaSessionUID {
override fun toString() = "$ID_CATEGORY:$category"
override fun toString() = "$ID_CATEGORY:${category.id}"
}
data class SingleItem(val uid: Music.UID) : MediaSessionUID {