Skip to content

Commit

Permalink
Fix for wrong episode title
Browse files Browse the repository at this point in the history
  • Loading branch information
Sholofly committed Oct 24, 2022
1 parent 7ac1a21 commit 8c292bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/lghorizon/media_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ async def async_browse_media(self, media_content_type=None, media_content_id=Non
if type(episode_data) is LGHorizonRecordingEpisode:
episode_recording: LGHorizonRecordingEpisode = episode_data
episode_media = BrowseMedia(
title=f"S{episode_recording.seasonNumber:02} E{episode_recording.episodeNumber:02}: {episode_recording.showTitle} - {episode_recording.episode_title}",
title=f"S{episode_recording.seasonNumber:02} E{episode_recording.episodeNumber:02}: {episode_recording.showTitle} - {episode_recording.episodeTitle}",
media_class=MEDIA_CLASS_EPISODE,
media_content_type=MEDIA_TYPE_EPISODE,
media_content_id=episode_recording.episodeId,
Expand Down

0 comments on commit 8c292bc

Please sign in to comment.