mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-06 00:13:44 +02:00
Fix buffer size
This commit is contained in:
parent
c311d3cbfc
commit
5c5c529fa9
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue