Skip to content

Commit

Permalink
Fix wiki page fetching
Browse files Browse the repository at this point in the history
  • Loading branch information
HeroBrine1st committed Jan 13, 2024
1 parent 9b4bf1d commit 48028ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/main/java/ru/herobrine1st/e621/api/model/WikiPage.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ import kotlinx.serialization.Serializable
data class WikiPage(
val id: Int,
val createdAt: Instant,
val updatedAt: Instant?,
val updatedAt: Instant? = null,
val title: String,
val body: String,
val creatorId: Int,
val creatorName: String? = null,
val updaterId: Int,
val updaterId: Int = -1,
val isLocked: Boolean,
val isDeleted: Boolean,
val otherNames: List<String>,
val categoryId: Int
val categoryId: Int,
)

0 comments on commit 48028ef

Please sign in to comment.