Skip to content

Commit

Permalink
More Plex nullability fixes (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
timusus authored Jan 11, 2024
1 parent eb3b339 commit 6ba34b9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ data class Media(
@Json(name = "id") val id: Int,
@Json(name = "duration") val duration: Int?,
@Json(name = "bitrate") val bitrate: Int?,
@Json(name = "audioChannels") val audioChannels: Int,
@Json(name = "audioCodec") val audioCodec: String,
@Json(name = "container") val container: String,
@Json(name = "audioChannels") val audioChannels: Int?,
@Json(name = "audioCodec") val audioCodec: String?,
@Json(name = "container") val container: String?,
@Json(name = "Part") val parts: List<Part>
)

Expand Down

0 comments on commit 6ba34b9

Please sign in to comment.