Skip to content

Commit

Permalink
support prefixed encoding caps
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Sep 11, 2023
1 parent fdf7958 commit 3ba907a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions xpra/server/source/encodings.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,9 @@ def parse_batch_int(value, varname):
self.parse_encoding_caps(c)

def parse_encoding_caps(self, c:typedict) -> None:
v = c.get("encoding")
if isinstance(v, dict):
self.encoding_options.update(v)
self.set_encoding(c.strget("encoding", None), None)
#encoding options (filter):
#1: these properties are special cased here because we
Expand Down

0 comments on commit 3ba907a

Please sign in to comment.