From dbe2770682ffa3f7f0be166bfa41081cfa905a8f Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Fri, 20 Feb 2026 23:57:13 +0500 Subject: [PATCH] fix(PrismExternalUpdater): actually check for updates on launch Signed-off-by: Octol1ttle --- launcher/updater/PrismExternalUpdater.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/launcher/updater/PrismExternalUpdater.cpp b/launcher/updater/PrismExternalUpdater.cpp index 69774dc04..3787063af 100644 --- a/launcher/updater/PrismExternalUpdater.cpp +++ b/launcher/updater/PrismExternalUpdater.cpp @@ -73,6 +73,9 @@ PrismExternalUpdater::PrismExternalUpdater(QWidget* parent, const QString& appDi priv->parent = parent; connectTimer(); resetAutoCheckTimer(); + if (priv->updateInterval == 0) { // "On Launch" + checkForUpdates(false); + } } PrismExternalUpdater::~PrismExternalUpdater()