Fix buffer size

This commit is contained in:
ksuprynowicz 2024-02-17 14:32:18 +01:00
parent c311d3cbfc
commit 5c5c529fa9

View file

@ -226,11 +226,13 @@ void EntityScriptServer::pushLogs() {
QJsonDocument document;
document.setArray(buffer);
QString data(document.toJson());
std::string string = data.toStdString();
auto cstring = string.c_str();
for (auto uuid : _logListeners) {
auto node = nodeList->nodeWithUUID(uuid);
if (node && node->getActiveSocket()) {
auto packet = NLPacketList::create(PacketType::EntityServerScriptLog, QByteArray(), true, true);
packet->write(data.toStdString().c_str(), data.size());
packet->write(cstring, strlen(cstring));
nodeList->sendPacketList(std::move(packet), *node);
}
}