diff options
author | AndreyL ProductEngine <alihatskiy@productengine.com> | 2016-08-20 14:36:04 +0300 |
---|---|---|
committer | AndreyL ProductEngine <alihatskiy@productengine.com> | 2016-08-20 14:36:04 +0300 |
commit | 6c280f9d2bbc8f6f7727bfc7b6792b33eb8ffafd (patch) | |
tree | 78982430cdeeec1761d90fa764e29dd1308f1d81 | |
parent | ea4b5e60d92b0b1349115e2722f028cd0cf2da18 (diff) |
MAINT-6662 Don't show release notes on first login
-rw-r--r-- | indra/newview/llappviewer.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 64bc7fb2c4..3c81e81a6d 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -5819,7 +5819,9 @@ void LLAppViewer::launchUpdater() */ void LLAppViewer::showReleaseNotesIfRequired() { - if (LLVersionInfo::getChannelAndVersion() != gLastRunVersion && gSavedSettings.getBOOL("UpdaterShowReleaseNotes")) + if (LLVersionInfo::getChannelAndVersion() != gLastRunVersion + && gSavedSettings.getBOOL("UpdaterShowReleaseNotes") + && !gSavedSettings.getBOOL("FirstLoginThisInstall")) { LLSD info(getViewerInfo()); LLWeb::loadURLInternal(info["VIEWER_RELEASE_NOTES_URL"]); |