Add more robust version of is_external_link_storeid() helper function
This commit is contained in:
parent
1dd40ca8b9
commit
3f2ababdb0
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ pub trait ExternalLinker : InternalLinker {
|
|||
/// Check whether the StoreId starts with `/link/external/`
|
||||
pub fn is_external_link_storeid(id: &StoreId) -> bool {
|
||||
debug!("Checking whether this is a /link/external/*: '{:?}'", id);
|
||||
id.to_str().map(|s| s.contains("/link/external/")).unwrap_or(false)
|
||||
id.parent().map(|par| par.ends_with("/link/external")).unwrap_or(false)
|
||||
}
|
||||
|
||||
fn get_external_link_from_file(entry: &FileLockEntry) -> Result<Url> {
|
||||
|
|
Loading…
Reference in a new issue