diff options
| -rw-r--r-- | indra/newview/llimprocessing.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/indra/newview/llimprocessing.cpp b/indra/newview/llimprocessing.cpp index d3537dc24e..c3375a3779 100644 --- a/indra/newview/llimprocessing.cpp +++ b/indra/newview/llimprocessing.cpp @@ -1569,6 +1569,12 @@ void LLIMProcessing::requestOfflineMessagesCoro(std::string url)          return;      } +    if (gAgent.getRegion() == NULL) +    { +        LL_WARNS("Messaging") << "Region null while attempting to load messages." << LL_ENDL; +        return; +    } +      LL_INFOS("Messaging") << "Processing offline messages." << LL_ENDL;      std::vector<U8> data; | 
