summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorCallum Prentice <callum@lindenlab.com>2025-08-11 18:50:34 -0700
committerCallum Prentice <callum@lindenlab.com>2025-08-11 18:50:34 -0700
commit454f93eaf8adeb7a9102b44674a3288000e004a8 (patch)
treede17fe4409e878d0c84b4d1b7f9f9ff6642821d9 /indra
parent1bbad3fd00a9db28944bab1ec9c0e10fd5d1c2f2 (diff)
A ??) sequence was mis-interpreted by the pre-commit hooks as a trigraph sequence.
Diffstat (limited to 'indra')
-rw-r--r--indra/media_plugins/cef/media_plugin_cef.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/media_plugins/cef/media_plugin_cef.cpp b/indra/media_plugins/cef/media_plugin_cef.cpp
index d77eb83b00..3f45ac971a 100644
--- a/indra/media_plugins/cef/media_plugin_cef.cpp
+++ b/indra/media_plugins/cef/media_plugin_cef.cpp
@@ -617,7 +617,7 @@ void MediaPluginCEF::receiveMessage(const char* message_string)
mCEFLib->setOnLoadStartCallback(std::bind(&MediaPluginCEF::onLoadStartCallback, this));
mCEFLib->setOnLoadEndCallback(std::bind(&MediaPluginCEF::onLoadEndCallback, this, std::placeholders::_1, std::placeholders::_2));
- // CEF 139 seems to have introduced a loading failure at the login page (only??) I haven't seen it on
+ // CEF 139 seems to have introduced a loading failure at the login page (only?) I haven't seen it on
// any other page and it only happens about 1 in 8 times. Without this handler for the error page
// (red box, error message/code/url) the page load recovers after display a brief built in error.
// Not ideal but better than stopping altgoether. Will restore this once I discover the error.