Change frontend endpoint to gui (#3717)

This commit is contained in:
Ylva Selling
2025-06-16 19:34:14 +02:00
committed by GitHub
parent ce50c3411d
commit 35332384b7
2 changed files with 4 additions and 4 deletions

View File

@@ -212,7 +212,7 @@ void CefWebGuiModule::internalInitialize(const ghoul::Dictionary& configuration)
_endpointCallback = webGuiModule->addEndpointChangeCallback(
[this](const std::string& endpoint, bool exists) {
ZoneScopedN("CefWebGuiModule::endpointCallback");
if (exists && endpoint == "frontend" && _instance) {
if (exists && endpoint == "gui" && _instance) {
_instance->reloadBrowser();
}
}