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 f97e2b2 commit 31ca071
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xpra/server/window/window_source.py
Expand Up @@ -476,7 +476,7 @@ def get_info(self) -> dict:
}
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 @@ -487,7 +487,7 @@ def get_info(self) -> dict:
"message" : larm[1],
}
}
}
})

#remove large default dict:
info.update({
Expand Down

0 comments on commit 31ca071

Please sign in to comment.