1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-25 15:33:39 +00:00

fix crash in borg transfer, fixes #7156

This commit is contained in:
Thomas Waldmann 2022-11-25 13:32:47 +01:00
parent a2205439a0
commit 83576ae94c
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01

View file

@ -153,6 +153,6 @@ def parse(self, id: bytes, cdata: bytes, decompress: bool = True) -> tuple[dict,
meta = {}
meta["ctype"] = compressor.ID
meta["clevel"] = compressor.level
meta["csize"] = len(data_compressed)
data = data_compressed
meta["csize"] = len(data_compressed)
return meta, data