Added stuff

This commit is contained in:
Johannes Wendel
2019-10-30 21:40:57 +01:00
parent f94e3d1461
commit 751895f8d5

View File

@@ -43,7 +43,7 @@ void InputSocketHandler::run()
auto size = str.size(); auto size = str.size();
str = std::to_string(size) + std::to_string(0x02) + str; str = std::to_string(size) + std::to_string(0x02) + str;
this->socket().sendBytes(str.c_str(), size); this->socket().sendBytes(str.c_str(), str.size());
} }
} }