From a3f3d8f766cf6a5f5ab16cc13430de898be07477 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos <kourem@gmail.com> Date: Sat, 21 May 2005 14:37:36 +0000 Subject: [PATCH] do not default to check_for_new_version True until we have a pseudo thread doing that [or else in heavy net load Gajim takes a long time and user think we need to hugely optimize our code] --- src/common/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config.py b/src/common/config.py index e240cdf15f..4be05b8129 100644 --- a/src/common/config.py +++ b/src/common/config.py @@ -88,7 +88,7 @@ class Config: 'before_nickname': [ opt_str, '<' ], 'after_nickname': [ opt_str, '>' ], 'send_os_info': [ opt_bool, True ], - 'check_for_new_version': [ opt_bool, True ], + 'check_for_new_version': [ opt_bool, False ], 'usegpg': [ opt_bool, False ], 'log_notif_in_user_file': [ opt_bool, True ], 'log_notif_in_sep_file': [ opt_bool, True ], -- GitLab