mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2024-11-09 04:22:41 +01:00
[http] Fix string/None comparison with int while in test
This commit is contained in:
parent
0c13f378de
commit
32fd27ec98
@ -110,7 +110,7 @@ class HttpFD(FileDownloader):
|
||||
# However, for a test we still would like to download just a piece of a file.
|
||||
# To achieve this we limit data_len to _TEST_FILE_SIZE and manually control
|
||||
# block size when downloading a file.
|
||||
if is_test and data_len > self._TEST_FILE_SIZE:
|
||||
if is_test and (data_len is None or int(data_len) > self._TEST_FILE_SIZE):
|
||||
data_len = self._TEST_FILE_SIZE
|
||||
|
||||
if data_len is not None:
|
||||
|
Loading…
Reference in New Issue
Block a user