From 5356b917545d43df5537128245ee5b786b705b90 Mon Sep 17 00:00:00 2001
From: Leyla Farazha <leyla@lindenlab.com>
Date: Tue, 20 Nov 2007 19:15:09 +0000
Subject: [PATCH] patch to fix grid selection problem, now resetting URIs every
 time

---
 indra/newview/llstartup.cpp | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp
index 267b2340d04..c43c4e86854 100644
--- a/indra/newview/llstartup.cpp
+++ b/indra/newview/llstartup.cpp
@@ -930,10 +930,8 @@ BOOL idle_startup()
 			gSavedSettings.setBOOL("UseDebugMenus", TRUE);
 			requested_options.push_back("god-connect");
 		}
-		if (sAuthUris.empty())
-		{
-			sAuthUris = LLAppViewer::instance()->getLoginURIs();
-		}
+		LLAppViewer::instance()->getLoginURIs();
+		sAuthUris = LLAppViewer::instance()->getLoginURIs();
 		sAuthUriNum = 0;
 		auth_method = "login_to_simulator";
 		auth_desc = "Logging in.  ";
-- 
GitLab