Remove unused field from DetailedSong
This commit is contained in:
@@ -11,7 +11,6 @@ open class DetailedSong(
|
|||||||
val artistsText: String? = null,
|
val artistsText: String? = null,
|
||||||
val durationText: String,
|
val durationText: String,
|
||||||
val thumbnailUrl: String?,
|
val thumbnailUrl: String?,
|
||||||
val likedAt: Long? = null,
|
|
||||||
val totalPlayTimeMs: Long = 0,
|
val totalPlayTimeMs: Long = 0,
|
||||||
@Relation(
|
@Relation(
|
||||||
entity = SongAlbumMap::class,
|
entity = SongAlbumMap::class,
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ class DetailedSongWithContentLength(
|
|||||||
artistsText: String? = null,
|
artistsText: String? = null,
|
||||||
durationText: String,
|
durationText: String,
|
||||||
thumbnailUrl: String?,
|
thumbnailUrl: String?,
|
||||||
likedAt: Long? = null,
|
|
||||||
totalPlayTimeMs: Long = 0,
|
totalPlayTimeMs: Long = 0,
|
||||||
albumId: String?,
|
albumId: String?,
|
||||||
artists: List<Artist>?,
|
artists: List<Artist>?,
|
||||||
@@ -21,4 +20,4 @@ class DetailedSongWithContentLength(
|
|||||||
projection = ["contentLength"]
|
projection = ["contentLength"]
|
||||||
)
|
)
|
||||||
val contentLength: Long?
|
val contentLength: Long?
|
||||||
) : DetailedSong(id, title, artistsText, durationText, thumbnailUrl, likedAt, totalPlayTimeMs, albumId, artists)
|
) : DetailedSong(id, title, artistsText, durationText, thumbnailUrl, totalPlayTimeMs, albumId, artists)
|
||||||
|
|||||||
Reference in New Issue
Block a user