aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llappviewer.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llappviewer.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/linden/indra/newview/llappviewer.cpp b/linden/indra/newview/llappviewer.cpp
index a0700a9..e55d4ab 100644
--- a/linden/indra/newview/llappviewer.cpp
+++ b/linden/indra/newview/llappviewer.cpp
@@ -3161,6 +3161,12 @@ void LLAppViewer::badNetworkHandler()
3161 LLAppViewer::handleSyncViewerCrash(); 3161 LLAppViewer::handleSyncViewerCrash();
3162 LLAppViewer::handleViewerCrash(); 3162 LLAppViewer::handleViewerCrash();
3163 3163
3164 std::string grid_support_msg = "";
3165 if (!gHippoGridManager->getCurrentGrid()->getSupportUrl().empty())
3166 {
3167 grid_support_msg = "\n\nOr visit the gird support page at: \n "
3168 + gHippoGridManager->getCurrentGrid()->getSupportUrl();
3169 }
3164 std::ostringstream message; 3170 std::ostringstream message;
3165 message << 3171 message <<
3166 "The viewer has detected mangled network data indicative\n" 3172 "The viewer has detected mangled network data indicative\n"
@@ -3170,8 +3176,8 @@ void LLAppViewer::badNetworkHandler()
3170 "Try uninstalling and reinstalling to see if this resolves \n" 3176 "Try uninstalling and reinstalling to see if this resolves \n"
3171 "the issue. \n" 3177 "the issue. \n"
3172 " \n" 3178 " \n"
3173 "If the problem continues, see the Tech Support FAQ at: \n" 3179 "If the problem continues, please report the issue at: \n"
3174 "www.secondlife.com/support"; 3180 "www.imprudenceviewer.org" << grid_support_msg;
3175 forceDisconnect(message.str()); 3181 forceDisconnect(message.str());
3176} 3182}
3177 3183