diff options
author | Dave SIMmONs <simon@lindenlab.com> | 2011-03-28 10:22:01 -0700 |
---|---|---|
committer | Dave SIMmONs <simon@lindenlab.com> | 2011-03-28 10:22:01 -0700 |
commit | 3c8f6f44dc7b0ec6c8632fc75df6effad3e7ef98 (patch) | |
tree | 64d82ac532019a7fb06a185914882cb60db6ef54 | |
parent | 7517f25c4322c858cc7a60d62532dfb654a805dc (diff) |
Fix usage of flag SLURLPassToOtherInstance during login.
-rw-r--r-- | indra/newview/llappviewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index b670a40cd0..0bf8fc2205 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -2459,7 +2459,7 @@ bool LLAppViewer::initConfiguration() // out of different directories if (LLStartUp::getStartSLURL().isValid() && - !(gSavedSettings.getBOOL("SLURLPassToOtherInstance"))) + (gSavedSettings.getBOOL("SLURLPassToOtherInstance"))) { if (sendURLToOtherInstance(LLStartUp::getStartSLURL().getSLURLString())) { |