Remove unused field from DetailedSong

This commit is contained in:
vfsfitvnm 2022-08-26 11:04:41 +02:00
parent abf6630bf4
commit 97707d724d
2 changed files with 1 additions and 3 deletions

View file

@ -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,

View file

@ -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)