diff options
author | Jonathan "Geenz" Goodman <geenz@lindenlab.com> | 2025-08-25 09:14:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-25 09:14:09 -0400 |
commit | 9f50a5b25bc7471fba5cdb19d6793f460422cbe5 (patch) | |
tree | b9ab1b401ebd556ed97580ab9f94cd8fb83d121a /indra/newview/llfloaterwebcontent.cpp | |
parent | cefee59b0e5fff683a50fe61633a9c14493d7145 (diff) | |
parent | 2a3fa6964507f133a599649efe58e350efc43fdf (diff) |
Merge pull request #4603 from secondlife/release/2025.06
Update develop with latest 2025.06 changes.
Diffstat (limited to 'indra/newview/llfloaterwebcontent.cpp')
-rw-r--r-- | indra/newview/llfloaterwebcontent.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterwebcontent.cpp b/indra/newview/llfloaterwebcontent.cpp index e1b6df6072..3ff84ac9b7 100644 --- a/indra/newview/llfloaterwebcontent.cpp +++ b/indra/newview/llfloaterwebcontent.cpp @@ -130,7 +130,7 @@ void LLFloaterWebContent::initializeURLHistory() for(; iter_history != end_history; ++iter_history) { std::string url = (*iter_history).asString(); - if(! url.empty()) + if(! url.empty() && url_list) url_list->addSimpleElement(url); } } |