Skip to content

Commit 739ea75

Browse files
committed
made loading message more descriptive
1 parent df9f167 commit 739ea75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/server/server.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2596,7 +2596,7 @@ int main(int argc, char ** argv) {
25962596
server_state current_state = state.load();
25972597
if (current_state == SERVER_STATE_LOADING_MODEL) {
25982598
if(req.path == "/"){
2599-
res.set_content("<html><body>The model is loading. Please wait.<br/>The user interface will appear soon.</body></html>", "text/html; charset=utf-8");
2599+
res.set_content("<html><body>The model is loading. Please wait.<br/>The user interface will appear soon.<br/>You may need to refresh the page.</body></html>", "text/html; charset=utf-8");
26002600
res.status = 503;
26012601
} else {
26022602
res_error(res, format_error_response("Loading model", ERROR_TYPE_UNAVAILABLE));

0 commit comments

Comments
 (0)