mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-28 07:50:31 +05:30
Initialize nextpage as null.
This commit is contained in:
parent
b4213d9449
commit
e7bf856d82
@ -6,5 +6,5 @@ import com.fasterxml.jackson.annotation.JsonIgnoreProperties
|
||||
data class CommentsPage(
|
||||
val comments: MutableList<Comment> = arrayListOf(),
|
||||
val disabled: Boolean? = null,
|
||||
val nextpage: String? = ""
|
||||
val nextpage: String? = null
|
||||
)
|
||||
|
@ -5,7 +5,7 @@ import com.fasterxml.jackson.annotation.JsonIgnoreProperties
|
||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||
data class SearchResult(
|
||||
val items: MutableList<ContentItem>? = arrayListOf(),
|
||||
val nextpage: String? = "",
|
||||
val nextpage: String? = null,
|
||||
val suggestion: String? = "",
|
||||
val corrected: Boolean? = null
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user