diff options
Diffstat (limited to 'updater/services.cpp')
-rw-r--r-- | updater/services.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/updater/services.cpp b/updater/services.cpp index ac604a0..948d4d7 100644 --- a/updater/services.cpp +++ b/updater/services.cpp @@ -159,11 +159,14 @@ bool WriteLastCheckTime() { unsigned int CALLBACK CheckForUpdatesWorker(void *param) {
if(checking) return 1;
+ /*
+ // this check doesn't work on some systems - not sure which or why
if(!(GetSystemMetrics(SM_NETWORK) & 1)) {
ShowError(TranslateT("No network - aborting update check"));
NLog("worker thread aborting - no network");
return 1; // no network
}
+ */
NLog("CheckForUpdatesWorker thread starting");
|