fix typo in README

This commit is contained in:
Benjamin Sergeant 2019-07-23 13:52:16 -07:00
parent 98de54106d
commit 4dd5950406
2 changed files with 3 additions and 2 deletions

View File

@ -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 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 ### 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. There is a Dockerfile for running the unittest on Linux, and to run the `ws` tool. It is also available on the docker registry.

View File

@ -755,7 +755,7 @@ namespace ix
{ {
if (_readyState != ReadyState::OPEN && _readyState != ReadyState::CLOSING) if (_readyState != ReadyState::OPEN && _readyState != ReadyState::CLOSING)
{ {
return WebSocketSendInfo(); return WebSocketSendInfo(false);
} }
size_t payloadSize = message.size(); size_t payloadSize = message.size();