diff --git a/examples/server/server.cpp b/examples/server/server.cpp index a9964812d..2f41f4567 100644 --- a/examples/server/server.cpp +++ b/examples/server/server.cpp @@ -2596,7 +2596,7 @@ int main(int argc, char ** argv) { server_state current_state = state.load(); if (current_state == SERVER_STATE_LOADING_MODEL) { if(req.path == "/"){ - res.set_content("The model is loading. Please wait.
The user interface will appear soon.", "text/html; charset=utf-8"); + res.set_content("The model is loading. Please wait.
The user interface will appear soon.
You may need to refresh the page.", "text/html; charset=utf-8"); res.status = 503; } else { res_error(res, format_error_response("Loading model", ERROR_TYPE_UNAVAILABLE));