From 3ca9035fdb26e6cdbaa8ca09312af337cfda4ae4 Mon Sep 17 00:00:00 2001 From: Mariusz Kogen Date: Fri, 6 Oct 2023 17:29:54 +0200 Subject: [PATCH] Use the correct OS name (#2445) Use correct OS name --- backend/src/install/mod.rs | 2 +- backend/src/update/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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