Skip to content

Commit

Permalink
remove exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Harshg999 committed Jan 30, 2025
1 parent 190e354 commit 160809f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion apps/filebrowser/src/filebrowser/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,6 @@ def upload_file(request):
try:
request.fs.upload_v1(request.META, input_data=body_data_bytes, destination=dest_path, username=request.user.username)
except Exception as ex:
LOG.exception(ex)
return HttpResponse(f'Upload to {filepath} failed: {str(ex)}', status=500)

response = {
Expand Down

0 comments on commit 160809f

Please sign in to comment.