Fix libimagentryselect::ui::* for new StoreId interface
This commit is contained in:
parent
197940ac33
commit
138e506882
1 changed files with 16 additions and 3 deletions
|
@ -31,8 +31,13 @@ pub fn get_id(matches: &ArgMatches) -> Option<Vec<StoreId>> {
|
||||||
.map(|vals| {
|
.map(|vals| {
|
||||||
vals.into_iter()
|
vals.into_iter()
|
||||||
.map(String::from)
|
.map(String::from)
|
||||||
.map(StoreId::from)
|
.map(PathBuf::from)
|
||||||
.collect()
|
.map(|p| StoreId::new_baseless(p)) /* TODO: Do not hide error here */
|
||||||
|
.filter_map(|res| match res {
|
||||||
|
Err(e) => { trace_error(&e); None },
|
||||||
|
Ok(o) => Some(o),
|
||||||
|
})
|
||||||
|
.collect()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -46,7 +51,15 @@ pub fn get_or_select_id(matches: &ArgMatches, store_path: &PathBuf) -> Option<Ve
|
||||||
None
|
None
|
||||||
},
|
},
|
||||||
|
|
||||||
Ok(p) => Some(vec![StoreId::from(p)]),
|
Ok(p) => {
|
||||||
|
match StoreId::new_baseless(p) {
|
||||||
|
Err(e) => {
|
||||||
|
trace_error(&e);
|
||||||
|
None
|
||||||
|
},
|
||||||
|
Ok(id) => Some(vec![id]),
|
||||||
|
}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue