Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
radicle: Fix `storage::refs::Error::is_not_found`
◌ CI pending Lorenz Leutgeb committed 2 months ago
commit c824d317e47588687bbcc2ad76d84280a42582ea
parent 748ddade2feb6f00245c2ba878bd54842dc57506
1 pending (1 total) View logs
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,
        }
    }