Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/systems/websocket_server/WebsocketServer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ using namespace systems;
/// \param[in] _type The message type string.
/// \return A string that is the frame header.
#define BUILD_HEADER(_op, _topic, _type) \
((_op)+","+(_topic)+","+(_type)+",")
((_op)+","+(_topic)+","+(std::string(_type))+",")

/// \brief Construction a complete websocket frame.
/// \param[in] _op The operation string.
Expand Down
Loading