Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/dev-unstable'
Browse files Browse the repository at this point in the history
  • Loading branch information
getnamo committed Apr 4, 2017
2 parents c31d607 + d64f7f5 commit 05467f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SocketIOClient.uplugin
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"FileVersion": 3,
"Version": 1,
"VersionName": "0.5.1",
"VersionName": "0.5.2",
"FriendlyName": "Socket.IO Client",
"Description": "Real-time networking library Socket.IO Client usable from blueprints and c++.",
"Category": "Networking",
Expand Down
4 changes: 1 addition & 3 deletions Source/SocketIOClient/Private/SIOMessageConvert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,7 @@ TSharedPtr<FJsonValue> USIOMessageConvert::ToJsonValue(const sio::message::ptr&
}
else if (flag == sio::message::flag_boolean)
{
bool InBoolean = false;

return MakeShareable(new FJsonValueBoolean(InBoolean));
return MakeShareable(new FJsonValueBoolean(Message->get_bool()));
}
else if (flag == sio::message::flag_null)
{
Expand Down

0 comments on commit 05467f8

Please sign in to comment.