Преглед на файлове

Fix subscription read buffer not clearing with subsequent calls

Giulio Girardi преди 4 години
родител
ревизия
44d4da249c
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/grpc/qgrpcchannel.cpp

+ 1 - 1
src/grpc/qgrpcchannel.cpp

@@ -89,10 +89,10 @@ QGrpcChannelSubscription::QGrpcChannelSubscription(grpc::Channel *channel, const
 
     thread = QThread::create([this](){
         grpc::ByteBuffer response;
-        QByteArray data;
         grpc::Status status;
 
         while (reader->Read(&response)) {
+            QByteArray data;
             status = parseByteBuffer(response, data);
 
             if (!status.ok()) {