Remove uses of the downloader's silent arg in DASH and HLS

This was originally done to prevent *all* aria2c logs unless on the last attempt, at which if it failed all attempts it would let aria2c log the error.

However, that's bad practice as aria2c may produce errors or warnings on say the 3rd attempt, and the 3rd attempt may have otherwise succeeded, with warnings or errors. It also generally shouldn't be necessary.
This commit is contained in:
rlaphoenix 2024-01-09 12:54:27 +00:00
parent 009a880371
commit cc4900a2ed
2 changed files with 0 additions and 2 deletions

View File

@ -535,7 +535,6 @@ class DASH:
headers=headers_, headers=headers_,
cookies=cookies, cookies=cookies,
proxy=proxy, proxy=proxy,
silent=attempts != 5,
segmented=True segmented=True
) )
break break

View File

@ -441,7 +441,6 @@ class HLS:
headers=headers_, headers=headers_,
cookies=session.cookies, cookies=session.cookies,
proxy=proxy, proxy=proxy,
silent=attempts != 5,
segmented=True segmented=True
) )
break break