Fix menu closing issue on file manager. #5615

Fix file path issue in import/export servers caused due to vulnerability fix.
This commit is contained in:
Aditya Toshniwal
2023-01-16 19:28:23 +05:30
committed by GitHub
parent e0b670f229
commit 53ae657cc9
4 changed files with 13 additions and 16 deletions

View File

@@ -127,13 +127,6 @@ def load_servers():
except Exception as e:
return bad_request(errormsg=str(e))
if storage_manager_path:
# generate full path of file
file_path = os.path.join(
storage_manager_path,
file_path.lstrip('/').lstrip('\\')
)
if file_path and os.path.exists(file_path):
try:
with open(file_path, 'r') as j: