Skip to content

Commit

Permalink
Notify when network bridge is missing, but allow attaching DP
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmark committed Nov 8, 2023
1 parent f90f8ea commit 1585a2f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/web/src/web_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,9 +298,8 @@ def is_bridge_configured(interface):
return_msg = _(
"Configure the network bridge for %(interface)s first: ", interface=interface
)
return {"status": False, "msg": return_msg + ", ".join(to_configure)}

return {"status": True, "msg": return_msg}
return {"status": True, "msg": return_msg + ", ".join(to_configure)}


def is_safe_path(file_name):
Expand Down

0 comments on commit 1585a2f

Please sign in to comment.