Skip to content

Commit 4c3156b

Browse files
FIX Payload extract
1 parent 11141fa commit 4c3156b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/payload_extract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def init_payload_info(reader: IO[bytes]) -> update_metadata_pb2.DeltaArchiveMani
109109
manifest = update_metadata_pb2.DeltaArchiveManifest.FromString(
110110
reader.read(hdr.manifest_len)
111111
)
112-
if manifest.minor_version not in [0, 8]:
112+
if manifest.minor_version not in [0, 8, 9]:
113113
raise BadPayload(
114114
"delta payloads are not supported, please use a full payload file"
115115
)

0 commit comments

Comments
 (0)