1
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-03-09 12:50:23 -05:00

fix signature

Authored by: bashonly
This commit is contained in:
bashonly 2025-02-18 17:00:15 -06:00
parent 8eca1e0fdb
commit 82707fe385
No known key found for this signature in database
GPG key ID: 783F096F253D15B0

View file

@ -5661,7 +5661,7 @@ def stderr(self, message):
self._ydl.to_stderr(message)
def _request_dump_filename(self, url, video_id, data=None, trim_length=None):
def _request_dump_filename(url, video_id, data=None, trim_length=None):
if data is not None:
data = hashlib.md5(data).hexdigest()
basen = join_nonempty(video_id, data, url, delim='_')