- handle season,episode overwrite for song,movie

- Make folder for each type of title
- Fix bug for discord downloader
This commit is contained in:
2026-03-30 11:46:33 +07:00
parent c2fafcd406
commit e9ca391575
7 changed files with 32 additions and 25 deletions

View File

@@ -92,7 +92,7 @@ class Song(Title):
context["disc"] = f"{self.disc:02}" if self.disc > 1 else ""
return context
def get_filename(self, media_info: MediaInfo, folder: bool = False, show_service: bool = True) -> str:
def get_filename(self, media_info: MediaInfo, folder: bool = False, show_service: bool = True,season_overwrite=None,episode_overwrite=None) -> str:
if folder:
name = f"{self.artist} - {self.album}"
if self.year: