Skip to content

Commit

Permalink
handle version generic requests
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Feb 18, 2023
1 parent b75e4fa commit 4ac138a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/server/server_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1817,7 +1817,7 @@ def _process_hello(self, proto, packet):
return

log("process_hello: capabilities=%s", capabilities)
if c.boolget("version_request"):
if c.strget("request")=="version" or c.boolget("version_request"):
self.send_version_info(proto, c.boolget("full-version-request"))
return
#verify version:
Expand Down

0 comments on commit 4ac138a

Please sign in to comment.