From 61a1e55c187a5c1def69a6af374364758380f7bd Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 13 Feb 2017 15:51:19 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Server/WebSocketServer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs index 23f7cf07..896acbb6 100644 --- a/websocket-sharp/Server/WebSocketServer.cs +++ b/websocket-sharp/Server/WebSocketServer.cs @@ -733,12 +733,12 @@ namespace WebSocketSharp.Server return true; if (configuration == null) { - message = "There is no configuration for the secure connection."; + message = "There is no configuration."; return false; } if (configuration.ServerCertificate == null) { - message = "There is no server certificate for the secure connection."; + message = "There is no server certificate."; return false; }