mirror of
https://github.com/xavo95/repak.git
synced 2025-01-18 02:54:36 +00:00
Fix writing wrong compressed size
This commit is contained in:
parent
da3e96ea93
commit
468eab37e4
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ impl Entry {
|
|||
compressed: compressed
|
||||
.as_ref()
|
||||
.map(|c: &Vec<u8>| c.len() as u64)
|
||||
.unwrap_or_default(),
|
||||
.unwrap_or(len),
|
||||
uncompressed: len,
|
||||
compression_slot,
|
||||
timestamp: None,
|
||||
|
|
Loading…
Reference in a new issue