diff --git a/src/decoder/mod.rs b/src/decoder/mod.rs index 3c6d9ef..d19ffd1 100644 --- a/src/decoder/mod.rs +++ b/src/decoder/mod.rs @@ -664,6 +664,11 @@ impl DecoderImpl { async fn read_quota_project_id(&mut self) -> io::Result { self.read_simple_entry("quota project id").await } + + async fn read_payload_ref(&mut self) -> io::Result { + self.current_header.check_header_size()?; + seq_read_entry(&mut self.input).await + } } /// Reader for file contents inside a pxar archive.