forked from kenzuya/unshackle
refactor(titles): comment out config.tag suffix in episode name generation
- Disabled appending of config.tag to episode name by commenting out related lines - Preserved existing logic for codec and HFR suffix additions - Ensured filename sanitization remains unchanged
This commit is contained in:
@@ -181,8 +181,8 @@ class Episode(Title):
|
||||
name += " HFR"
|
||||
name += f" {VIDEO_CODEC_MAP.get(codec, codec)}"
|
||||
|
||||
if config.tag:
|
||||
name += f"-{config.tag}"
|
||||
# if config.tag:
|
||||
# name += f"-{config.tag}"
|
||||
|
||||
return sanitize_filename(name)
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user