diff options
| author | Merov Linden <merov@lindenlab.com> | 2013-10-28 17:19:14 -0700 | 
|---|---|---|
| committer | Merov Linden <merov@lindenlab.com> | 2013-10-28 17:19:14 -0700 | 
| commit | 309d16ebdbd3b4d39271217beb9bc44d41db83d9 (patch) | |
| tree | 0b537237186da5b6bd4d0267803fac23dedfffdf /indra | |
| parent | 57040ea70e21ea5cfaedfd8a3506362a03562552 (diff) | |
| parent | 3a57a67c5d386cfa6df004915ecb0104b3207e72 (diff) | |
Pull merge from lindenlab/viewer-fbc
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llfacebookconnect.cpp | 17 | 
1 files changed, 11 insertions, 6 deletions
| diff --git a/indra/newview/llfacebookconnect.cpp b/indra/newview/llfacebookconnect.cpp index 611d18d6d6..9a20ce8f1b 100644 --- a/indra/newview/llfacebookconnect.cpp +++ b/indra/newview/llfacebookconnect.cpp @@ -356,13 +356,18 @@ void LLFacebookConnect::openFacebookWeb(std::string url)  std::string LLFacebookConnect::getFacebookConnectURL(const std::string& route, bool include_read_from_master)  { -	std::string url = gAgent.getRegion()->getCapability("FacebookConnect"); -	url += route; +    std::string url(""); +    LLViewerRegion *regionp = gAgent.getRegion(); +    if (regionp) +    { +        url = regionp->getCapability("FacebookConnect"); +        url += route; -	if (include_read_from_master && mReadFromMaster) -	{ -		url += "?read_from_master=true"; -	} +        if (include_read_from_master && mReadFromMaster) +        { +            url += "?read_from_master=true"; +        } +    }  	return url;  } | 
