Skip to content

Commit

Permalink
Fix getting plotoutline (#876)
Browse files Browse the repository at this point in the history
  • Loading branch information
mediaminister authored Apr 21, 2021
1 parent c7b7dc9 commit a7013bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/lib/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def get_plotoutline(api_data, season=False):
plotoutline = html_to_kodi(api_data.get('shortDescription', ''))
return plotoutline

plotoutline = html_to_kodi(api_data.get('subtitle'))
plotoutline = html_to_kodi(api_data.get('subtitle', ''))
return plotoutline

# VRT NU Suggest API
Expand Down

0 comments on commit a7013bb

Please sign in to comment.