Skip to content

Commit

Permalink
#3599 don't override main attributes with query string values
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Oct 20, 2022
1 parent b18f1cf commit 593bec1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions xpra/scripts/parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,8 @@ def add_path():
def process_query_string(s):
r = parse.parse_qs(s)
for k, v in r.items():
if k in desc:
warn(f"ignoring {k} override from query string")
if len(v)==1:
desc[k] = v[0]
else:
Expand Down

0 comments on commit 593bec1

Please sign in to comment.