From 9bb54527c4e0419e4a024330559e75415d914d7e Mon Sep 17 00:00:00 2001
From: Mnikolenko Productengine <mnikolenko@productengine.com>
Date: Mon, 21 Aug 2017 17:52:22 +0300
Subject: [PATCH] MAINT-7728 FIXED Viewer crashes if trying to send snapshot
 via email when region not set

---
 indra/newview/llpanelsnapshotpostcard.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/indra/newview/llpanelsnapshotpostcard.cpp b/indra/newview/llpanelsnapshotpostcard.cpp
index 3d18e837afc..f3a4cf36eed 100644
--- a/indra/newview/llpanelsnapshotpostcard.cpp
+++ b/indra/newview/llpanelsnapshotpostcard.cpp
@@ -164,6 +164,8 @@ void LLPanelSnapshotPostcard::sendPostcardFinished(LLSD result)
 
 void LLPanelSnapshotPostcard::sendPostcard()
 {
+    if (!gAgent.getRegion()) return;
+
     // upload the image
     std::string url = gAgent.getRegion()->getCapability("SendPostcard");
     if (!url.empty())
-- 
GitLab