Never use the direct download button, as it is currently broken

This commit is contained in:
I-Al-Istannen 2020-06-11 13:31:01 +02:00
parent fdb57884ed
commit 23bfa42a0d

View File

@ -425,7 +425,8 @@ class IliasCrawler:
results: List[IliasCrawlerEntry] = []
# We can download everything directly!
if len(direct_download_links) == len(video_links):
# FIXME: Sadly the download button is currently broken, so never do that
if False and len(direct_download_links) == len(video_links):
for link in direct_download_links:
results += self._crawl_single_video(video_dir_path, link, True)
else: