Fix a compile error for some of the platforms.

This commit is contained in:
Relintai 2022-06-30 17:25:45 +02:00
parent e660b2d848
commit e3989cafad

View File

@ -60,7 +60,7 @@ void WebServerSimple::_start() {
err = server->listen(bind_port, bind_ip, use_ssl, ssl_key, ssl_cert);
}
ERR_FAIL_COND_MSG(err != OK, TTR("Error starting HTTP server:") + "\n" + itos(err));
ERR_FAIL_COND_MSG(err != OK, "Error starting HTTP server:" + "\n" + itos(err));
}
void WebServerSimple::_stop() {