Fixed the issue while downloading the file from file manager. #5368

This commit is contained in:
Nikhil Mohite 2022-09-26 12:10:56 +05:30 committed by GitHub
parent ffe2fea81c
commit fc8d6d6e90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -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 #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 #5368 <https://github.com/pgadmin-org/pgadmin4/issues/5368>`_ - Fixed the issue while downloading the file from file manager.

View File

@ -1086,7 +1086,7 @@ def file_manager(trans_id):
kwargs.pop('name', None)
if mode in ['addfolder', 'getfolder', 'rename', 'delete',
'is_file_exist', 'req', 'permission']:
'is_file_exist', 'req', 'permission', 'download']:
kwargs.pop('req', None)
res = func(**kwargs)