summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorCho <cho@lindenlab.com>2013-05-08 19:17:47 +0100
committerCho <cho@lindenlab.com>2013-05-08 19:17:47 +0100
commit7d6e3945204c05efe85eadf8a6635d0ca30e9186 (patch)
tree6b636644fbdd2335640128c661af233e7c8ee90a /indra/newview
parent3a351c4ee548e2bce8ad0d5935377a090591621f (diff)
temporary hack for fb demo to use https://pdp15.lindenlab.com instead of going through cap server
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llpanelpeople.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llpanelpeople.cpp b/indra/newview/llpanelpeople.cpp
index 479e503ef0..9956888134 100644
--- a/indra/newview/llpanelpeople.cpp
+++ b/indra/newview/llpanelpeople.cpp
@@ -1887,7 +1887,8 @@ void LLPanelPeople::disconnectFromFacebook()
std::string LLPanelPeople::getFacebookConnectURL(const std::string& route)
{
- static std::string sFacebookConnectUrl = gAgent.getRegion()->getCapability("FacebookConnect");
+ //static std::string sFacebookConnectUrl = gAgent.getRegion()->getCapability("FacebookConnect");
+ static std::string sFacebookConnectUrl = "https://pdp15.lindenlab.com/fbc/agent/" + gAgentID.asString(); // TEMPORARY HACK FOR FB DEMO - Cho
std::string url = sFacebookConnectUrl + route;
llinfos << url << llendl;
return url;