Forgot to add 'or' for episode

PlexPy or Plex has {media_type} to included 'episode' instead of or in addition to 'show'
This commit is contained in:
blacktwin 2016-09-23 13:34:56 -04:00 committed by GitHub
parent 6a075c7713
commit 61df473a61

View File

@ -71,7 +71,7 @@ show_html = """\
""" %(show_name, season_num, episode_num, episode_name, library_name, summary, poster) #these are the passed parameters for tvshows
### Do not edit below ###
# Check to se whether it is a tv show or a movie
if show_name.lower() == show_notify.lower() or show_type.lower() == 'show': # if tv show
if show_name.lower() == show_notify.lower() or show_type.lower() == 'show' or show_type.lower() == 'episode': # if tv show
message = MIMEText(show_html, 'html')
message['Subject'] = email_subject
message['From'] = email.utils.formataddr((name, sender))