Add subtitle field to media objects

This commit is contained in:
2023-02-23 10:56:21 -05:00
parent 16d1dcc125
commit 0f44df2b9b
5 changed files with 44 additions and 4 deletions

View File

@ -45,6 +45,14 @@ class Episode(ScrobblableMixin):
def __str__(self):
return f"{self.title}"
@property
def subtitle(self):
return self.podcast
@property
def info_link(self):
return ""
@classmethod
def find_or_create(
cls, podcast_dict: Dict, producer_dict: Dict, episode_dict: Dict