Merge pull request #33 from varyg1001/master

always define track.path if track.descriptor is URL
This commit is contained in:
rlaphoenix 2023-02-23 08:45:06 +00:00 committed by GitHub
commit 5624232e5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -630,6 +630,7 @@ class dl:
service.session.headers, service.session.headers,
proxy if track.needs_proxy else None proxy if track.needs_proxy else None
)) ))
track.path = save_path
if not track.drm and isinstance(track, (Video, Audio)): if not track.drm and isinstance(track, (Video, Audio)):
try: try:
@ -645,7 +646,6 @@ class dl:
prepare_drm(drm) prepare_drm(drm)
drm.decrypt(save_path) drm.decrypt(save_path)
track.drm = None track.drm = None
track.path = save_path
if callable(track.OnDecrypted): if callable(track.OnDecrypted):
track.OnDecrypted(track) track.OnDecrypted(track)
else: else: