Skip to content

Commit

Permalink
AddonManager: Correct bug with older Qt data
Browse files Browse the repository at this point in the history
  • Loading branch information
chennes committed Jan 27, 2022
1 parent e296aa6 commit 97cc2cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/AddonManager/NetworkManager.py
Expand Up @@ -412,7 +412,7 @@ def __data_incoming(self, index: int):
self.file_buffers[index] = f
else:
f = self.file_buffers[index]
f.write(buffer)
f.write(buffer.data())

def __reply_finished(self, item: QueueItem) -> None:
reply = self.replies.pop(item.index)
Expand Down

0 comments on commit 97cc2cf

Please sign in to comment.