From 6adc746331ad00901ac7e42741ab4dde1625c691 Mon Sep 17 00:00:00 2001 From: Khadim Fall Date: Thu, 17 Apr 2025 23:13:37 +0200 Subject: [PATCH] Add html description to show and episode --- show.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/show.go b/show.go index f7d8999..e597e1b 100644 --- a/show.go +++ b/show.go @@ -38,6 +38,9 @@ type SimpleShow struct { // A description of the show. Description string `json:"description"` + // A description of the episode. This field may contain HTML tags. + HtmlDescription string `json:"html_description"` + // Whether or not the show has explicit content // (true = yes it does; false = no it does not OR unknown). Explicit bool `json:"explicit"` @@ -89,6 +92,9 @@ type EpisodePage struct { // A description of the episode. Description string `json:"description"` + // A description of the episode. This field may contain HTML tags. + HtmlDescription string `json:"html_description"` + // The episode length in milliseconds. Duration_ms Numeric `json:"duration_ms"`