1
Fork 0
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:
Joshua Goins 2022-08-31 17:58:08 -04:00
parent d9e79e563a
commit ca6a5be72b

View file

@ -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);
} }