diff options
author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2023-10-12 17:02:47 +0200 |
---|---|---|
committer | Guru <alexandrgproductengine@lindenlab.com> | 2023-10-12 18:27:41 +0200 |
commit | 846064261895d2da7e3252f6d8a0723e5b88cd5e (patch) | |
tree | 1bf2e322266aba90a44077f4591718f6e0a150f5 /indra/newview/llslurl.cpp | |
parent | 136a993ef2fad587cb61d5aa2b142ac9119d2e42 (diff) |
SL-20422 Clicking the 'Bring it back' link on Aditi displays a teleport alert
Diffstat (limited to 'indra/newview/llslurl.cpp')
-rw-r--r-- | indra/newview/llslurl.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llslurl.cpp b/indra/newview/llslurl.cpp index a3a8247268..a9b7b0e417 100644 --- a/indra/newview/llslurl.cpp +++ b/indra/newview/llslurl.cpp @@ -112,6 +112,13 @@ LLSLURL::LLSLURL(const std::string& slurl) // and the slurl type (APP or LOCATION) if(slurl_uri.scheme() == LLSLURL::SLURL_SECONDLIFE_SCHEME) { + if (path_array.size() == 0) + { + // um, we need a path... + mType = EMPTY; + return; + } + // parse a maingrid style slurl. We know the grid is maingrid // so grab it. // A location slurl for maingrid (with the special schemes) can be in the form |