mirror of
https://zotify.xyz/zotify/zotify.git
synced 2024-11-10 01:02:06 +01:00
Fix podcast downloading
This commit is contained in:
parent
2e348b90d1
commit
0ab438d23d
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ def download_episode(episode_id) -> None:
|
|||
|
||||
filepath = PurePath(download_directory).joinpath(f"{filename}.ogg")
|
||||
if (
|
||||
Path(filepath).isfile()
|
||||
Path(filepath).is_file()
|
||||
and Path(filepath).stat().st_size == total_size
|
||||
and Zotify.CONFIG.get_skip_existing()
|
||||
):
|
||||
|
|
Loading…
Reference in a new issue