1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 04:04:16 +00:00

[webconsole] change error status print format

Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
R4SAS 2020-10-12 07:29:46 +03:00
parent ffa0f0afd9
commit 0b372a344c
Signed by: r4sas
GPG Key ID: 66F6C87B98EBCFE2

View File

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