Skip to content

Commit

Permalink
Fix airdate and add runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
the-jeffski committed Nov 22, 2022
1 parent 68f1c09 commit 3745af1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion custom_components/medusa/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ def update(self):
card_items["studio"] = show["network"]
card_items["title"] = show["showName"]
card_items["episode"] = show["epName"]
card_items["release"] = '$day, $date $time'
card_items["release"] = show["airdate"]
card_items["runtime"] = show["runtime"]
card_items["poster"] = self.add_poster(lst_images, directory, poster, show["showSlug"], card_items, del_images)
card_items["fanart"] = self.add_fanart(lst_images, directory, fanart, show["showSlug"], card_items, del_images)
card_items["banner"] = self.add_banner(lst_images, directory, banner, show["showSlug"], card_items, del_images)
Expand Down

0 comments on commit 3745af1

Please sign in to comment.