From 18bcaf9e31758e6fccda2a988b937adcb8cba245 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Mon, 6 Jul 2026 19:07:23 +0200 Subject: [PATCH] feat: add season and airdate fields to tvmaze episode struct --- integrations/tvmaze/client.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/integrations/tvmaze/client.go b/integrations/tvmaze/client.go index acbd72c8..e7a2ece1 100644 --- a/integrations/tvmaze/client.go +++ b/integrations/tvmaze/client.go @@ -32,7 +32,9 @@ type show struct { } type episode struct { - Name string `json:"name"` + Name string `json:"name"` + Season int `json:"season"` + Airdate string `json:"airdate"` } func NewClient() *Client {