diff options
-rw-r--r-- | indra/test_apps/llfbconnecttest/llfbconnecttest.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/test_apps/llfbconnecttest/llfbconnecttest.cpp b/indra/test_apps/llfbconnecttest/llfbconnecttest.cpp index 1a0c783376..483a15c468 100644 --- a/indra/test_apps/llfbconnecttest/llfbconnecttest.cpp +++ b/indra/test_apps/llfbconnecttest/llfbconnecttest.cpp @@ -133,7 +133,7 @@ LLFBConnectTest::LLFBConnectTest( int app_window, int window_width, int window_h mGluiMediaBrowserControlWindowFlag( true ), mMediaBrowserControlBackButtonFlag( true ), mMediaBrowserControlForwardButtonFlag( true ), - mHomeWebUrl( "http://www.facebook.com/" ) + mHomeWebUrl( "https://cryptic-ridge-1632.herokuapp.com/" ) { // debugging spam std::cout << std::endl << " GLUT version: " << "3.7.6" << std::endl; // no way to get real version from GLUT @@ -1613,6 +1613,9 @@ mediaPanel* LLFBConnectTest::addMediaPanel( std::string url ) // make a new plugin LLPluginClassMedia* media_source = new LLPluginClassMedia(this); + // enable cookies so the FB login works + media_source->enable_cookies(true); + // tell the plugin what size we asked for media_source->setSize( media_width, media_height ); |