Skip to content
Snippets Groups Projects
Commit 3ea0ceb9 authored by Xiao Gui's avatar Xiao Gui
Browse files

fix saneurl

parent f1cb7658
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ async def get_short(short_id:str, request: Request):
return JSONResponse(resp)
except DataproxyStore.NotFound as e:
raise HTTPException(404, str(e))
except DataproxyStore.GeneralException as e:
except DataproxyStore.GenericException as e:
raise HTTPException(500, str(e))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment