Skip to content

Commit

Permalink
Update GLiNet_Download.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Tedcharlesbrown committed Oct 4, 2023
1 parent 48abefb commit 53e393c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GliNet/GLiNet_Download.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ async def get_download(download_list: list):
file_limit = 0

for i, app in enumerate(download_list):
if file_limit < 10:
if file_limit < 1000:
if app.link == "Archive":
archived_apps.append(app)
else:
Expand Down Expand Up @@ -248,7 +248,7 @@ def search_archive(init: bool):
else:
for file in files_in_archive:
if file != "__hidden__" and file != application_list:
if file_limit < 10:
if file_limit < 10000:
if not asyncio.run(check_already_downloaded(file)):
console_log(flags[11],f"{file.upper()} NOT IN GLINET")
download_from_archive(ftp,file)
Expand Down

0 comments on commit 53e393c

Please sign in to comment.