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

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