fix: incorrect episode regex

This commit is contained in:
Benex254
2024-08-22 19:09:00 +03:00
parent 1a72f88be3
commit 6bcc77ea44
5 changed files with 7 additions and 7 deletions

View File

@@ -141,7 +141,7 @@ class MpvPlayer(object):
"streamingEpisodes"
]:
if re.match(
f"Episode {current_episode_number}", episode_detail["title"]
f"Episode {current_episode_number} ", episode_detail["title"]
):
self.current_media_title = episode_detail["title"]
break