Browse Source

[webconsole] change error status print format

Signed-off-by: R4SAS <r4sas@i2pmail.org>
pull/1558/head
R4SAS 4 years ago
parent
commit
0b372a344c
Signed by: r4sas
GPG Key ID: 66F6C87B98EBCFE2
  1. 6
      daemon/HTTPServer.cpp

6
daemon/HTTPServer.cpp

@ -257,11 +257,11 @@ namespace http { @@ -257,11 +257,11 @@ namespace http {
switch (i2p::context.GetError ())
{
case eRouterErrorClockSkew:
s << "<br>Clock skew";
s << " - Clock skew";
break;
case eRouterErrorOffline:
s << "<br>Offline";
break;
s << " - Offline";
break;
default: ;
}
break;

Loading…
Cancel
Save