fix: update casing to reflect proxy refactor changes

This commit is contained in:
2026-04-11 12:17:45 -03:00
parent e8d387e520
commit acfdf7b3ef
+2 -2
View File
@@ -56,7 +56,7 @@ void cleanup()
if (g_Proxy)
{
Log::info("Shutting down proxy");
g_Proxy->Shutdown();
g_Proxy->shutdown();
}
Log::info("Restoring system proxy settings");
@@ -88,7 +88,7 @@ int main()
*/
Log::info("Starting proxy");
g_Proxy = new Proxy();
if (!g_Proxy->Init())
if (!g_Proxy->init())
{
Log::error("Proxy failed to start");
return 1;