aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llstartup.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llstartup.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/linden/indra/newview/llstartup.cpp b/linden/indra/newview/llstartup.cpp
index 0464e99..a3fde55 100644
--- a/linden/indra/newview/llstartup.cpp
+++ b/linden/indra/newview/llstartup.cpp
@@ -1108,6 +1108,7 @@ bool idle_startup()
1108 requested_options.push_back("buddy-list"); 1108 requested_options.push_back("buddy-list");
1109 requested_options.push_back("ui-config"); 1109 requested_options.push_back("ui-config");
1110#endif 1110#endif
1111 requested_options.push_back("map-server-url");
1111 requested_options.push_back("tutorial_setting"); 1112 requested_options.push_back("tutorial_setting");
1112 requested_options.push_back("login-flags"); 1113 requested_options.push_back("login-flags");
1113 requested_options.push_back("global-textures"); 1114 requested_options.push_back("global-textures");
@@ -1750,7 +1751,15 @@ bool idle_startup()
1750 LLStartUp::setShouldAutoLogin(false); 1751 LLStartUp::setShouldAutoLogin(false);
1751 show_connect_box = true; 1752 show_connect_box = true;
1752 } 1753 }
1753 1754
1755 std::string map_server_url = LLUserAuth::getInstance()->getResponse("map-server-url");
1756 if(!map_server_url.empty())
1757 {
1758 gSavedSettings.setString("MapServerURL", map_server_url);
1759 //llwarns << "MapServerURL" << map_server_url << llendl;
1760 }
1761 // else llwarns << "MapServerURL empty"<< llendl;
1762
1754 // Pass the user information to the voice chat server interface. 1763 // Pass the user information to the voice chat server interface.
1755 gVoiceClient->userAuthorized(firstname, lastname, gAgentID); 1764 gVoiceClient->userAuthorized(firstname, lastname, gAgentID);
1756 } 1765 }