Skip to content

Commit

Permalink
#3337 encoding info was getting clobbered
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Nov 9, 2021
1 parent 1dc3fd8 commit 9d10f95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xpra/server/window/window_source.py
Expand Up @@ -474,7 +474,7 @@ def get_info(self):
}
larm = self.last_auto_refresh_message
if larm:
esinfo = {"auto-refresh" : {
esinfo.update({"auto-refresh" : {
"quality" : self.refresh_quality,
"speed" : self.refresh_speed,
"min-delay" : self.min_auto_refresh_delay,
Expand All @@ -485,7 +485,7 @@ def get_info(self):
"message" : larm[1],
}
}
}
})

now = monotonic_time()
buckets_info = {}
Expand Down

0 comments on commit 9d10f95

Please sign in to comment.