From b3fa99dd2f0ca82484ca2ea40b21c572dc8d78ec Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Thu, 26 Mar 2026 09:29:02 +0500 Subject: [PATCH] change: enable automatic update checking by default Signed-off-by: Octol1ttle --- launcher/updater/PrismExternalUpdater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/updater/PrismExternalUpdater.cpp b/launcher/updater/PrismExternalUpdater.cpp index 550828ded..a4e34e10a 100644 --- a/launcher/updater/PrismExternalUpdater.cpp +++ b/launcher/updater/PrismExternalUpdater.cpp @@ -61,7 +61,7 @@ PrismExternalUpdater::PrismExternalUpdater(QWidget* parent, const QString& appDi auto settings_file = priv->dataDir.absoluteFilePath("prismlauncher_update.cfg"); priv->settings = std::make_unique(settings_file, QSettings::Format::IniFormat); priv->allowBeta = priv->settings->value("allow_beta", false).toBool(); - priv->autoCheck = priv->settings->value("auto_check", false).toBool(); + priv->autoCheck = priv->settings->value("auto_check", true).toBool(); bool interval_ok = false; // default once per day priv->updateInterval = priv->settings->value("update_interval", 86400).toInt(&interval_ok);