1
0
mirror of synced 2024-09-24 11:38:26 +02:00

impr: Disable the initial oobe screen in the web version

This commit is contained in:
WerWolv 2024-01-26 16:54:27 +01:00
parent bde476dfb7
commit d23d382038

View File

@ -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<std::string>();