diff --git a/backend/src/install/mod.rs b/backend/src/install/mod.rs index 4f77ae1fa..c2546e6eb 100644 --- a/backend/src/install/mod.rs +++ b/backend/src/install/mod.rs @@ -699,7 +699,7 @@ pub async fn download_install_s9pk( for (p, lan) in cfg { if p.0 == 80 && lan.ssl || p.0 == 443 && !lan.ssl { return Err(Error::new( - eyre!("SSL Conflict with embassyOS"), + eyre!("SSL Conflict with StartOS"), ErrorKind::LanPortConflict, )); } diff --git a/backend/src/update/mod.rs b/backend/src/update/mod.rs index 6e3d3e3b0..200650166 100644 --- a/backend/src/update/mod.rs +++ b/backend/src/update/mod.rs @@ -154,7 +154,7 @@ async fn maybe_do_update(ctx: RpcContext, marketplace_url: Url) -> Result