Skip to content

Commit

Permalink
fix: too much combining
Browse files Browse the repository at this point in the history
  • Loading branch information
rebelonion committed Apr 29, 2024
1 parent ed0e06d commit 0967721
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ data class Activity(
@SerialName("type")
val type: String,
@SerialName("replyCount")
val replyCount: Int,
val replyCount: Int = 0,
@SerialName("status")
val status: String?,
@SerialName("progress")
Expand All @@ -60,7 +60,7 @@ data class Activity(
@SerialName("isLocked")
val isLocked: Boolean?,
@SerialName("isSubscribed")
val isSubscribed: Boolean,
val isSubscribed: Boolean?,
@SerialName("likeCount")
var likeCount: Int?,
@SerialName("isLiked")
Expand Down

0 comments on commit 0967721

Please sign in to comment.