mirror of
https://github.com/redstrate/Physis.git
synced 2025-04-24 05:27:45 +00:00
Don't panic on IndexAddDelete, it should actually NOP
This commit is contained in:
parent
d9e79e563a
commit
ca6a5be72b
1 changed files with 3 additions and 1 deletions
|
@ -564,7 +564,9 @@ pub(crate) fn apply_patch(data_dir: &str, patch_path: &str) -> Result<(), PatchE
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
SqpkOperation::IndexAddDelete(_) => todo!(),
|
SqpkOperation::IndexAddDelete(_) => {
|
||||||
|
println!("NOP");
|
||||||
|
},
|
||||||
SqpkOperation::PatchInfo(patch_info) => {
|
SqpkOperation::PatchInfo(patch_info) => {
|
||||||
println!("Got patch info: {:#?}", patch_info);
|
println!("Got patch info: {:#?}", patch_info);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue