Skip to content

Commit

Permalink
Update GitHub.kt
Browse files Browse the repository at this point in the history
fix(core) nullable field in GitHub user model
  • Loading branch information
Vacxe committed Apr 24, 2024
1 parent a1fd8a3 commit 485cb78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ data class GitHubUser(
val login: String? = null,
val type: GitHubUserType? = null,
@SerialName("avatar_url")
val avatarUrl: String?
val avatarUrl: String? = null
)

@Serializable
Expand Down

0 comments on commit 485cb78

Please sign in to comment.