From d23d382038f22f7c7cf5ea674e36af1e3e3954ca Mon Sep 17 00:00:00 2001 From: WerWolv Date: Fri, 26 Jan 2024 16:54:27 +0100 Subject: [PATCH] impr: Disable the initial oobe screen in the web version --- plugins/builtin/source/content/out_of_box_experience.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/builtin/source/content/out_of_box_experience.cpp b/plugins/builtin/source/content/out_of_box_experience.cpp index 996a01ea7..e19aba7e0 100644 --- a/plugins/builtin/source/content/out_of_box_experience.cpp +++ b/plugins/builtin/source/content/out_of_box_experience.cpp @@ -345,6 +345,11 @@ namespace hex::plugin::builtin { } void setupOutOfBoxExperience() { + // Don't show the out of box experience in the web version + #if defined(OS_WEB) + return; + #endif + // Check if there is a telemetry uuid s_uuid = ContentRegistry::Settings::read("hex.builtin.setting.general", "hex.builtin.setting.general.uuid", "").get();