Skip to content

Commit

Permalink
this flag has been enabled since v2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Sep 8, 2023
1 parent 35f77d9 commit 1a01b86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/client/mixins/network_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def parse_server_capabilities(self, c : typedict) -> bool:
#make sure the server doesn't provide a start time in the future:
import time
self.server_start_time = min(time.time(), c.intget("start_time", -1))
self.server_bandwidth_limit_change = c.boolget("network.bandwidth-limit-change")
self.server_bandwidth_limit_change = c.boolget("network.bandwidth-limit-change", True)
self.server_bandwidth_limit = c.intget("network.bandwidth-limit")
bandwidthlog("server_bandwidth_limit_change=%s, server_bandwidth_limit=%s",
self.server_bandwidth_limit_change, self.server_bandwidth_limit)
Expand Down

0 comments on commit 1a01b86

Please sign in to comment.