Merge pull request #177 from writeas/check-for-updates-silently

Check for updates in background on launch
This commit is contained in:
Angelo Stavrow 2021-02-11 10:33:05 -05:00 committed by GitHub
commit 6580168606
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
// If enabled, check for updates.
if automaticallyChecksForUpdates {
SUUpdater.shared()?.checkForUpdates(self)
SUUpdater.shared()?.checkForUpdatesInBackground()
}
}
}