refactor get_final_path

This commit is contained in:
Rafael Moraes 2024-09-08 00:07:30 -03:00
parent 63ba4b0824
commit 475bddb5f7

View File

@ -398,14 +398,16 @@ class Downloader:
template_folder = self.template_folder_no_album.split("/") template_folder = self.template_folder_no_album.split("/")
template_file = self.template_file_no_album.split("/") template_file = self.template_file_no_album.split("/")
template_final = template_folder + template_file template_final = template_folder + template_file
return self.output_path.joinpath( return Path(
self.output_path,
*[ *[
self.get_sanitized_string(i.format(**tags), True) self.get_sanitized_string(i.format(**tags), True)
for i in template_final[0:-1] for i in template_final[0:-1]
] ],
).joinpath( (
self.get_sanitized_string(template_final[-1].format(**tags), False) self.get_sanitized_string(template_final[-1].format(**tags), False)
+ file_extension + file_extension
),
) )
def get_cover_file_extension(self, cover_url: str) -> str: def get_cover_file_extension(self, cover_url: str) -> str: