does not pass

This commit is contained in:
Henry Schimke
2022-10-31 12:32:01 -05:00
parent b351130fd6
commit ebe23e1896

View File

@@ -230,7 +230,11 @@ impl MinimalECIInput {
Self {
bytes: bytes,
fnc1: fnc1.as_ref().unwrap().chars().nth(0).unwrap() as u16,
fnc1: if let Some(fnc1_exists) = fnc1 {//}.as_ref().unwrap().chars().nth(0).unwrap() as u16,
fnc1_exists.chars().nth(0).unwrap() as u16
}else{
1000
}
}
}