diff options
Diffstat (limited to 'indra/newview')
| -rwxr-xr-x | indra/newview/llfloaterabout.cpp | 12 | 
1 files changed, 4 insertions, 8 deletions
diff --git a/indra/newview/llfloaterabout.cpp b/indra/newview/llfloaterabout.cpp index b342d8fdf3..e71daa6067 100755 --- a/indra/newview/llfloaterabout.cpp +++ b/indra/newview/llfloaterabout.cpp @@ -289,15 +289,11 @@ void LLServerReleaseNotesURLFetcher::httpCompleted()  	LL_DEBUGS("ServerReleaseNotes") << dumpResponse()   									<< " [headers:" << getResponseHeaders() << "]" << LL_ENDL; -	LLFloaterAbout* floater_about = LLFloaterReg::getTypedInstance<LLFloaterAbout>("sl_about"); -	if (floater_about) +	std::string location = getResponseHeader(HTTP_IN_HEADER_LOCATION); +	if (location.empty())  	{ -		std::string location = getResponseHeader(HTTP_IN_HEADER_LOCATION); -		if (location.empty()) -		{ -			location = LLTrans::getString("ErrorFetchingServerReleaseNotesURL"); -		} -		LLAppViewer::instance()->setServerReleaseNotesURL(location); +		location = LLTrans::getString("ErrorFetchingServerReleaseNotesURL");  	} +	LLAppViewer::instance()->setServerReleaseNotesURL(location);  }  | 
