summaryrefslogtreecommitdiff
path: root/indra/newview/llstartup.cpp
diff options
context:
space:
mode:
authorAndreyL ProductEngine <alihatskiy@productengine.com>2017-01-26 18:59:34 +0200
committerAndreyL ProductEngine <alihatskiy@productengine.com>2017-01-26 18:59:34 +0200
commitc5c24fac976e5439a2c2484c2ddc9882192f2b5f (patch)
tree07247ef8386d464999de4cdb80e89e1623fc71db /indra/newview/llstartup.cpp
parent9d67a4910d65941151d8f59395624b901b5da306 (diff)
MAINT-7061 Make the check TPV friendly
Diffstat (limited to 'indra/newview/llstartup.cpp')
-rw-r--r--indra/newview/llstartup.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp
index 5459ddc439..57a06da287 100644
--- a/indra/newview/llstartup.cpp
+++ b/indra/newview/llstartup.cpp
@@ -2263,7 +2263,7 @@ void login_callback(S32 option, void *userdata)
void show_release_notes_if_required()
{
if (LLVersionInfo::getChannelAndVersion() != gLastRunVersion
- && LLVersionInfo::getChannel() != "Second Life Test" // don't show Release Notes for the test builds
+ && LLVersionInfo::getChannel().find("Test") == std::string::npos // don't show Release Notes for the test builds
&& gSavedSettings.getBOOL("UpdaterShowReleaseNotes")
&& !gSavedSettings.getBOOL("FirstLoginThisInstall"))
{