Remove unused field from DetailedSong
This commit is contained in:
parent
abf6630bf4
commit
97707d724d
2 changed files with 1 additions and 3 deletions
|
@ -11,7 +11,6 @@ open class DetailedSong(
|
|||
val artistsText: String? = null,
|
||||
val durationText: String,
|
||||
val thumbnailUrl: String?,
|
||||
val likedAt: Long? = null,
|
||||
val totalPlayTimeMs: Long = 0,
|
||||
@Relation(
|
||||
entity = SongAlbumMap::class,
|
||||
|
|
|
@ -10,7 +10,6 @@ class DetailedSongWithContentLength(
|
|||
artistsText: String? = null,
|
||||
durationText: String,
|
||||
thumbnailUrl: String?,
|
||||
likedAt: Long? = null,
|
||||
totalPlayTimeMs: Long = 0,
|
||||
albumId: String?,
|
||||
artists: List<Artist>?,
|
||||
|
@ -21,4 +20,4 @@ class DetailedSongWithContentLength(
|
|||
projection = ["contentLength"]
|
||||
)
|
||||
val contentLength: Long?
|
||||
) : DetailedSong(id, title, artistsText, durationText, thumbnailUrl, likedAt, totalPlayTimeMs, albumId, artists)
|
||||
) : DetailedSong(id, title, artistsText, durationText, thumbnailUrl, totalPlayTimeMs, albumId, artists)
|
||||
|
|
Loading…
Reference in a new issue