diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-10-03 10:51:14 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-10-03 10:51:14 +0300 |
commit | f33c96421049d0f0a447d9a51d4f29b655a7246a (patch) | |
tree | 61d327a412013033b8feb318bc82eeada5b62c88 /indra/newview/llcommandhandler.cpp | |
parent | f0addca90fefdef5d461dfe86e6168c0e72890b6 (diff) |
MAINT-7862 FIXED Crash in LLGroupMgr::sendGroupTitlesRequest(..)
Diffstat (limited to 'indra/newview/llcommandhandler.cpp')
-rw-r--r-- | indra/newview/llcommandhandler.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llcommandhandler.cpp b/indra/newview/llcommandhandler.cpp index 5ea7efc045..76d965b1f1 100644 --- a/indra/newview/llcommandhandler.cpp +++ b/indra/newview/llcommandhandler.cpp @@ -134,7 +134,11 @@ bool LLCommandHandlerRegistry::dispatch(const std::string& cmd, { break; } - + //skip initial request from external browser before STATE_BROWSER_INIT + if (LLStartUp::getStartupState() == STATE_FIRST) + { + return true; + } cur_time = LLTimer::getElapsedSeconds(); if (cur_time < last_throttle_time + THROTTLE_PERIOD) { |