From 498dfed98b6276fb0867df21c88af2b69da7263c Mon Sep 17 00:00:00 2001 From: Andreas Traczyk Date: Mon, 12 Jun 2023 14:34:48 -0400 Subject: [PATCH] misc: only check for app updates on windows Change-Id: I508300446e5c8891bb018af0b0c42de4309685c6 --- src/app/MainApplicationWindow.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/MainApplicationWindow.qml b/src/app/MainApplicationWindow.qml index 44935cfe..16d064ef 100644 --- a/src/app/MainApplicationWindow.qml +++ b/src/app/MainApplicationWindow.qml @@ -233,7 +233,7 @@ ApplicationWindow { windowSettingsLoaded = true; // Quiet check for updates on start if set to. - if (Qt.platform.os.toString() !== "osx") { + if (Qt.platform.os.toString() === "windows") { if (UtilsAdapter.getAppValue(Settings.AutoUpdate)) { UpdateManager.checkForUpdates(true); UpdateManager.setAutoUpdateCheck(true);