Skip to content
Snippets Groups Projects
Commit c4f3bc4e authored by Andrey Kleshchev's avatar Andrey Kleshchev Committed by akleshchev
Browse files

SL-20504 Chat history crashes on shutdown

parent 0abe8a87
No related branches found
No related tags found
No related merge requests found
......@@ -579,6 +579,12 @@ void chatterBoxHistoryCoro(std::string url, LLUUID sessionId, std::string from,
return;
}
if (LLApp::isExiting() || gDisconnected)
{
LL_DEBUGS("ChatHistory") << "Ignoring chat history response, shutting down" << LL_ENDL;
return;
}
// Add history to IM session
LLSD history = result[LLCoreHttpUtil::HttpCoroutineAdapter::HTTP_RESULTS_CONTENT];
......@@ -3913,6 +3919,12 @@ class LLViewerChatterBoxSessionStartReply : public LLHTTPNode
const LLSD& context,
const LLSD& input) const
{
if (LLApp::isExiting() || gDisconnected)
{
LL_DEBUGS("ChatHistory") << "Ignoring ChatterBox session, Shutting down" << LL_ENDL;
return;
}
LLSD body;
LLUUID temp_session_id;
LLUUID session_id;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment