Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
radicle: Fix `storage::refs::Error::is_not_found`
Lorenz Leutgeb committed 1 month ago
commit c824d317e47588687bbcc2ad76d84280a42582ea
parent 748ddad
1 file changed +1 -0
modified crates/radicle/src/storage/refs.rs
@@ -50,6 +50,7 @@ impl Error {
    pub fn is_not_found(&self) -> bool {
        match self {
            Self::Git(e) => e.is_not_found(),
+
            Self::Read(sigrefs::read::error::Read::MissingSigrefs { .. }) => true,
            _ => false,
        }
    }