Fix _download_dir reference
This commit is contained in:
parent
a1bc020fec
commit
f79722975f
@ -737,7 +737,7 @@ class DownloadManager(QAbstractListModel):
|
|||||||
prompt_download_directory = config.get(
|
prompt_download_directory = config.get(
|
||||||
'storage', 'prompt-download-directory')
|
'storage', 'prompt-download-directory')
|
||||||
if not prompt_download_directory and not fileobj:
|
if not prompt_download_directory and not fileobj:
|
||||||
filename = _download_dir()
|
filename = download_dir()
|
||||||
|
|
||||||
if fileobj is not None or filename is not None:
|
if fileobj is not None or filename is not None:
|
||||||
return self.fetch_request(request,
|
return self.fetch_request(request,
|
||||||
@ -832,7 +832,7 @@ class DownloadManager(QAbstractListModel):
|
|||||||
prompt_download_directory = config.get('storage',
|
prompt_download_directory = config.get('storage',
|
||||||
'prompt-download-directory')
|
'prompt-download-directory')
|
||||||
if not prompt_download_directory and not fileobj:
|
if not prompt_download_directory and not fileobj:
|
||||||
filename = _download_dir()
|
filename = download_dir()
|
||||||
|
|
||||||
if filename is not None:
|
if filename is not None:
|
||||||
download.set_filename(filename)
|
download.set_filename(filename)
|
||||||
|
Loading…
Reference in New Issue
Block a user