Radish alpha
r
rad:z39mP9rQAaGmERfUMPULfPUi473tY
Radicle terminal user interface
Radicle
Git
bin/inbox: Do not panic if repository cannot be found
Matthias Beyer committed 4 months ago
commit d2364464452d91c213c125c5cde4f36bf507acfc
parent 48945df
1 file changed +1 -1
modified bin/commands/inbox.rs
@@ -199,7 +199,7 @@ pub async fn run(options: Options, ctx: impl terminal::Context) -> anyhow::Resul
    match options.op {
        Operation::List { opts } => {
            let profile = ctx.profile()?;
-
            let repository = profile.storage.repository(rid).unwrap();
+
            let repository = profile.storage.repository(rid)?;

            if let Err(err) = crate::log::enable() {
                println!("{err}");