Skip to content
Snippets Groups Projects
Commit d519760c authored by Emmanuel Viennet's avatar Emmanuel Viennet Committed by iziram
Browse files

Fix: ue_sharing_code

parent 066a24b3
No related branches found
No related tags found
No related merge requests found
......@@ -498,8 +498,10 @@ def ue_sharing_code():
hide_ue_id = request.args.get("hide_ue_id")
return sco_edit_ue.ue_sharing_code(
ue_code=ue_code,
ue_id=None if ue_id is None else int(ue_id),
hide_ue_id=None if hide_ue_id is None else int(hide_ue_id),
ue_id=None if ((ue_id is None) or ue_id == "") else int(ue_id),
hide_ue_id=None
if ((hide_ue_id is None) or hide_ue_id == "")
else int(hide_ue_id),
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment