A ??) sequence was mis-interpreted by the pre-commit hooks as a trigraph sequence.

master
Callum Prentice 2025-08-11 18:50:34 -07:00
parent 1bbad3fd00
commit 454f93eaf8
1 changed files with 1 additions and 1 deletions

View File

@ -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.