Sfoglia il codice sorgente

fixed invalid operation exception

release/3.x.x
JanEggers 7 anni fa
parent
commit
6c8f85afe9
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      MQTTnet.Core/Client/MqttPacketDispatcher.cs

+ 1
- 1
MQTTnet.Core/Client/MqttPacketDispatcher.cs Vedi File

@@ -41,7 +41,7 @@ namespace MQTTnet.Core.Client
{
if (packetAwaiter.PacketSelector(packet))
{
packetAwaiter.SetResult(packet);
packetAwaiter.TrySetResult(packet);
packetDispatched = true;
break;
}


Caricamento…
Annulla
Salva