We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ALSearchItem.status
1 parent a6667bc commit 6ad9eb0Copy full SHA for 6ad9eb0
app/src/main/java/eu/kanade/tachiyomi/data/track/anilist/dto/ALSearchItem.kt
@@ -9,7 +9,7 @@ data class ALSearchItem(
9
val coverImage: ItemCover,
10
val description: String?,
11
val format: String,
12
- val status: String = "",
+ val status: String?,
13
val startDate: ALFuzzyDate,
14
val chapters: Long?,
15
val averageScore: Int?,
@@ -20,7 +20,7 @@ data class ALSearchItem(
20
imageUrl = coverImage.large,
21
description = description,
22
format = format.replace("_", "-"),
23
- publishingStatus = status,
+ publishingStatus = status ?: "",
24
startDateFuzzy = startDate.toEpochMilli(),
25
totalChapters = chapters ?: 0,
26
averageScore = averageScore ?: -1,
0 commit comments