diff options
| author | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-12-02 15:49:30 +0200 |
|---|---|---|
| committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-12-02 21:48:12 +0200 |
| commit | 35661866fbaa5d1b1437c998d61121cf651839a5 (patch) | |
| tree | a9cb44821f90e8d4367a3e00671a24c137c1b42b /indra/llcommon/lluriparser.cpp | |
| parent | 7991ae892ef0f717636c0fe3c0eff0a5f92e6bb8 (diff) | |
#5086 Fix 'Copy SLURL' generating obsolete http link
use https
Diffstat (limited to 'indra/llcommon/lluriparser.cpp')
| -rw-r--r-- | indra/llcommon/lluriparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lluriparser.cpp b/indra/llcommon/lluriparser.cpp index 33a48d970d..1d246bb70e 100644 --- a/indra/llcommon/lluriparser.cpp +++ b/indra/llcommon/lluriparser.cpp @@ -33,7 +33,7 @@ LLUriParser::LLUriParser(const std::string& u) : mTmpScheme(false), mNormalizedT { if (u.find("://") == std::string::npos) { - mNormalizedUri = "http://"; + mNormalizedUri = "https://"; mTmpScheme = true; } |
