diff --git a/radicle/src/profile.rs b/radicle/src/profile.rs index 063da411..e2a6ee3b 100644 --- a/radicle/src/profile.rs +++ b/radicle/src/profile.rs @@ -381,6 +381,12 @@ impl std::ops::DerefMut for Profile { } } +impl AliasStore for Profile { + fn alias(&self, nid: &NodeId) -> Option { + self.aliases().alias(nid) + } +} + /// Holds multiple alias stores, and will try /// them one by one when asking for an alias. pub struct Aliases {