1
Fork 0

Use the full Fingerprint when stringifying Svh

This commit is contained in:
Ben Kimock 2023-04-30 14:28:30 -04:00
parent 43a78029b4
commit 3c6d9ec77d
3 changed files with 11 additions and 6 deletions

View file

@ -346,7 +346,7 @@ pub fn finalize_session_directory(sess: &Session, svh: Option<Svh>) {
let mut new_sub_dir_name = String::from(&old_sub_dir_name[..=dash_indices[2]]);
// Append the svh
base_n::push_str(svh.as_u64() as u128, INT_ENCODE_BASE, &mut new_sub_dir_name);
base_n::push_str(svh.as_u128(), INT_ENCODE_BASE, &mut new_sub_dir_name);
// Create the full path
let new_path = incr_comp_session_dir.parent().unwrap().join(new_sub_dir_name);