mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-23 23:13:38 -06:00
Fixed the issue while downloading the file from file manager. #5368
This commit is contained in:
parent
ffe2fea81c
commit
fc8d6d6e90
@ -33,3 +33,4 @@ Bug fixes
|
|||||||
| `Issue #5261 <https://github.com/pgadmin-org/pgadmin4/issues/5261>`_ - Ensure that the search filter should be cleared when a new row is added to the user management.
|
| `Issue #5261 <https://github.com/pgadmin-org/pgadmin4/issues/5261>`_ - Ensure that the search filter should be cleared when a new row is added to the user management.
|
||||||
| `Issue #5262 <https://github.com/pgadmin-org/pgadmin4/issues/5262>`_ - Ensure that the user management dialog should not allow the same email addresses with different letter casings when creating users.
|
| `Issue #5262 <https://github.com/pgadmin-org/pgadmin4/issues/5262>`_ - Ensure that the user management dialog should not allow the same email addresses with different letter casings when creating users.
|
||||||
| `Issue #5308 <https://github.com/pgadmin-org/pgadmin4/issues/5308>`_ - Ensure that the default value for a column should be used if it is made empty.
|
| `Issue #5308 <https://github.com/pgadmin-org/pgadmin4/issues/5308>`_ - Ensure that the default value for a column should be used if it is made empty.
|
||||||
|
| `Issue #5368 <https://github.com/pgadmin-org/pgadmin4/issues/5368>`_ - Fixed the issue while downloading the file from file manager.
|
@ -1086,7 +1086,7 @@ def file_manager(trans_id):
|
|||||||
kwargs.pop('name', None)
|
kwargs.pop('name', None)
|
||||||
|
|
||||||
if mode in ['addfolder', 'getfolder', 'rename', 'delete',
|
if mode in ['addfolder', 'getfolder', 'rename', 'delete',
|
||||||
'is_file_exist', 'req', 'permission']:
|
'is_file_exist', 'req', 'permission', 'download']:
|
||||||
kwargs.pop('req', None)
|
kwargs.pop('req', None)
|
||||||
|
|
||||||
res = func(**kwargs)
|
res = func(**kwargs)
|
||||||
|
Loading…
Reference in New Issue
Block a user