mirror of
https://github.com/Viren070/MediaFusion.git
synced 2025-12-01 23:21:11 +01:00
Fix torrent name parsing to handle episode filenames correctly
This commit is contained in:
+2
-2
@@ -320,8 +320,8 @@ async def parse_stream_data(
|
||||
|
||||
if show_full_torrent_name:
|
||||
torrent_name = (
|
||||
f"{stream_data.torrent_name}/{episode_data.title or episode_data.filename or ''}"
|
||||
if episode_data
|
||||
f"{stream_data.torrent_name} ┈➤ {episode_data.filename}"
|
||||
if episode_data and episode_data.filename
|
||||
else stream_data.torrent_name
|
||||
)
|
||||
torrent_name = "📂 " + torrent_name.replace(".torrent", "").replace(
|
||||
|
||||
Reference in New Issue
Block a user