fixed another bug that arose from calling an unimplemented function
This commit is contained in:
parent
265e72abad
commit
6c2d4824e1
@ -18,11 +18,14 @@ class Download:
|
|||||||
logger.info(f"skipping the fetching of the download links, cuz {row['file']} already exists.")
|
logger.info(f"skipping the fetching of the download links, cuz {row['file']} already exists.")
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
"""
|
||||||
|
not implemented yet, will in one point crashe everything
|
||||||
# check File System
|
# check File System
|
||||||
file_path = file_system.get_path(row)
|
file_path = file_system.get_path(row)
|
||||||
if file_path is not None:
|
if file_path is not None:
|
||||||
self.add_url(file_path, 'file', id_)
|
self.add_url(file_path, 'file', id_)
|
||||||
continue
|
continue
|
||||||
|
"""
|
||||||
|
|
||||||
# check YouTube
|
# check YouTube
|
||||||
youtube_url = youtube_music.get_youtube_url(row)
|
youtube_url = youtube_music.get_youtube_url(row)
|
||||||
|
Loading…
Reference in New Issue
Block a user