Skip to content

Commit

Permalink
Add empty map default value to thumbnails in CDN response
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandarIlic committed Jan 22, 2024
1 parent 3271553 commit 129334f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import kotlinx.serialization.Serializable
data class ContentPrimalEventResources(
@SerialName("event_id") val eventId: String,
val resources: List<EventResource>,
@SerialName("thumbnails") val videoThumbnails: Map<String, String>,
@SerialName("thumbnails") val videoThumbnails: Map<String, String> = emptyMap(),
)

@Serializable
Expand Down

0 comments on commit 129334f

Please sign in to comment.