fix download link (closes #89)

This commit is contained in:
Alex Shnitman 2021-12-15 19:57:06 +02:00
parent 6a78c9bf60
commit 4bd54939eb
1 changed files with 2 additions and 1 deletions

View File

@ -53,6 +53,7 @@ class Download:
def put_status(st):
self.status_queue.put({k: v for k, v in st.items() if k in (
'tmpfilename',
'filename',
'status',
'msg',
'total_bytes',
@ -119,7 +120,7 @@ class Download:
return
self.tmpfilename = status.get('tmpfilename')
if 'filename' in status:
self.info.filename = os.path.relpath(status.get('filename'))
self.info.filename = os.path.relpath(status.get('filename'), self.download_dir)
self.info.status = status['status']
self.info.msg = status.get('msg')
if 'downloaded_bytes' in status: