Update SongExtension.kt
This commit is contained in:
parent
3265580275
commit
c379342f6a
1 changed files with 6 additions and 0 deletions
|
@ -8,6 +8,12 @@ fun List<SongEntity>.toSongs(): List<Song> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun List<Song>.toSongs(playlistId: Int): List<SongEntity> {
|
||||||
|
return map {
|
||||||
|
it.toSongEntity(playlistId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fun SongEntity.toSong(): Song {
|
fun SongEntity.toSong(): Song {
|
||||||
return Song(
|
return Song(
|
||||||
id,
|
id,
|
||||||
|
|
Loading…
Reference in a new issue