diff --git a/libimagentrylink/src/external.rs b/libimagentrylink/src/external.rs index 1a000eba..45972bf5 100644 --- a/libimagentrylink/src/external.rs +++ b/libimagentrylink/src/external.rs @@ -94,8 +94,8 @@ 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.local().starts_with("link/external") + debug!("Checking whether this is a 'links/external/': '{:?}'", id); + id.local().starts_with("links/external") } fn get_external_link_from_file(entry: &FileLockEntry) -> Result {