From 3c0ab76a72b2dc6d4a11b3d8790df3e5e09c7688 Mon Sep 17 00:00:00 2001 From: Angelo Stavrow Date: Mon, 8 Feb 2021 16:33:04 -0500 Subject: [PATCH] Check for updates in background on launch --- macOS/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macOS/AppDelegate.swift b/macOS/AppDelegate.swift index f23d06e..f9c47d9 100644 --- a/macOS/AppDelegate.swift +++ b/macOS/AppDelegate.swift @@ -18,7 +18,7 @@ class AppDelegate: NSObject, NSApplicationDelegate { // If enabled, check for updates. if automaticallyChecksForUpdates { - SUUpdater.shared()?.checkForUpdates(self) + SUUpdater.shared()?.checkForUpdatesInBackground() } } }