diff --git a/docs/en_US/release_notes_6_15.rst b/docs/en_US/release_notes_6_15.rst index 5f82e85cb..6523ef104 100644 --- a/docs/en_US/release_notes_6_15.rst +++ b/docs/en_US/release_notes_6_15.rst @@ -33,3 +33,4 @@ Bug fixes | `Issue #5261 `_ - Ensure that the search filter should be cleared when a new row is added to the user management. | `Issue #5262 `_ - Ensure that the user management dialog should not allow the same email addresses with different letter casings when creating users. | `Issue #5308 `_ - Ensure that the default value for a column should be used if it is made empty. + | `Issue #5368 `_ - Fixed the issue while downloading the file from file manager. \ No newline at end of file diff --git a/web/pgadmin/misc/file_manager/__init__.py b/web/pgadmin/misc/file_manager/__init__.py index ce3e9ae3a..8d38149f7 100644 --- a/web/pgadmin/misc/file_manager/__init__.py +++ b/web/pgadmin/misc/file_manager/__init__.py @@ -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)