Fix usage of chunk_num

This commit is contained in:
Kovid Goyal
2022-04-13 20:16:51 +05:30
parent a1bfcd9fc5
commit 4b7c50518e
2 changed files with 2 additions and 2 deletions

View File

@@ -1022,7 +1022,7 @@ class Window:
num, rest = msg.split(':', 1)
if num == '0' or len(self.current_clone_data) > 1024 * 1024:
self.current_clone_data = ''
self.current_clone_data += msg
self.current_clone_data += rest
def handle_remote_askpass(self, msg: str) -> None:
from .shm import SharedMemory