From 6dae01d8dd8e3d220e5ca9677c67bc5b1bf54ca1 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 (cherry picked from commit dbe2770682ffa3f7f0be166bfa41081cfa905a8f) --- launcher/updater/PrismExternalUpdater.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/launcher/updater/PrismExternalUpdater.cpp b/launcher/updater/PrismExternalUpdater.cpp index 9c8c1f10c..72ca04ce2 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()