Skip to content

Commit

Permalink
Fix error with null GitHub repo license URL
Browse files Browse the repository at this point in the history
  • Loading branch information
juraj-hrivnak committed Sep 25, 2024
1 parent 082ccd3 commit 3d1cae8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ data class GhRepoModel(
data class License(
val key: String,
val name: String,
val url: String? = null,
@SerialName("spdx_id") val spdxId: String? = null,
val url: String,
@SerialName("node_id") val nodeId: String
@SerialName("node_id") val nodeId: String,
)
}

0 comments on commit 3d1cae8

Please sign in to comment.