From 4dd5950406004b14e0d9342a2141c07fe0beeee7 Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Tue, 23 Jul 2019 13:52:16 -0700 Subject: [PATCH] fix typo in README --- README.md | 3 ++- ixwebsocket/IXWebSocketTransport.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 58e7e85b..b66822b5 100644 --- a/README.md +++ b/README.md @@ -264,8 +264,9 @@ vcpkg install ixwebsocket Support for building with conan was contributed by Olivia Zoe (thanks !). The package name to reference is `IXWebSocket/5.0.0@LunarWatcher/stable`. The package is in the process to be published to the official conan package repo, but in the meantime, it can be accessed by adding a new remote ``` -conan remote add remote_name_here https://api.bintray.com/conan/oliviazoe0/conan-packages). +conan remote add remote_name_here https://api.bintray.com/conan/oliviazoe0/conan-packages ``` + ### Docker There is a Dockerfile for running the unittest on Linux, and to run the `ws` tool. It is also available on the docker registry. diff --git a/ixwebsocket/IXWebSocketTransport.cpp b/ixwebsocket/IXWebSocketTransport.cpp index 26ef1334..a799408e 100644 --- a/ixwebsocket/IXWebSocketTransport.cpp +++ b/ixwebsocket/IXWebSocketTransport.cpp @@ -755,7 +755,7 @@ namespace ix { if (_readyState != ReadyState::OPEN && _readyState != ReadyState::CLOSING) { - return WebSocketSendInfo(); + return WebSocketSendInfo(false); } size_t payloadSize = message.size();