diff options
author | Mark Palange (Mani) <palange@lindenlab.com> | 2010-11-18 21:57:27 -0800 |
---|---|---|
committer | Mark Palange (Mani) <palange@lindenlab.com> | 2010-11-18 21:57:27 -0800 |
commit | 8c2026d6b71f133deafa6b0e19baf69632a2510a (patch) | |
tree | 580083310e6298a8b68aba59a566d18a970d6fbb /indra/newview/llappviewer.cpp | |
parent | e19ee531aedcbbe0f77a8ac11cdcda43c9c4ed84 (diff) |
CHOP-135 Bug fixes.
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r-- | indra/newview/llappviewer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 1fd8b02530..b6f52e3e15 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -2433,7 +2433,8 @@ void LLAppViewer::initUpdater() mUpdater->setCheckPeriod(check_period); if(gSavedSettings.getBOOL("UpdaterServiceActive")) { - mUpdater->startChecking(); + bool install_if_ready = true; + mUpdater->startChecking(install_if_ready); } LLEventPump & updater_pump = LLEventPumps::instance().obtain(LLUpdaterService::pumpName()); |