Skip to content

Commit

Permalink
#4342 forgot to update the server packet source
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Sep 1, 2024
1 parent 256f6da commit 28a1a6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/server/proxy/instance_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def get_server_packet(self):
p = self.server_packets.get()
s = self.server_packets.qsize()
log("sending to server: %s (queue size=%i)", p[0], s)
return p, None, None, None, True, s > 0 or self.client_has_more
return p, True, s > 0 or self.client_has_more

def _packet_recompress(self, packet: PacketType, index: int, name: str) -> PacketType:
if len(packet) <= index:
Expand Down

0 comments on commit 28a1a6f

Please sign in to comment.