summaryrefslogtreecommitdiffstats
path: root/src/wiki.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wiki.rs')
-rw-r--r--src/wiki.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wiki.rs b/src/wiki.rs
index a98941d..2048a35 100644
--- a/src/wiki.rs
+++ b/src/wiki.rs
@@ -124,7 +124,7 @@ async fn browse_wiki_page(repo: &RepoName, api: &Forgejo, page: &str) -> eyre::R
.html_url
.as_ref()
.ok_or_eyre("page does not have html url")?;
- open::that(html_url.as_str())?;
+ open::that_detached(html_url.as_str()).wrap_err("Failed to open URL")?;
Ok(())
}