Skip to content

Commit

Permalink
#3841 fixup, doh: continue to support specifying a local display
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Apr 30, 2023
1 parent 485a598 commit 3a23c3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/scripts/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ def do_run_mode(script_file, cmdline, error_cb, options, args, mode, defaults):
commands = []
connargs = []
for arg in tuple(args):
if any(arg.startswith(f"{mode}://") for mode in SOCKET_TYPES):
if any(arg.startswith(f"{mode}://") for mode in SOCKET_TYPES) or arg.startswith(":") or arg.startswith("wayland-"):
#keep this one
connargs.append(arg)
else:
Expand Down

0 comments on commit 3a23c3f

Please sign in to comment.