music: fix m3u volume processing

This commit is contained in:
Alexander Capehart 2024-06-09 16:50:04 -06:00
parent d117f16081
commit dbe7bdf1c3
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47

View file

@ -158,8 +158,7 @@ value class Components private constructor(val components: List<String>) {
return components == other.components.take(components.size)
}
fun containing(other: Components) =
Components(components + other.components.drop(components.size))
fun containing(other: Components) = Components(other.components.drop(components.size))
companion object {
/**