Explorar el Código

Merge remote-tracking branch 'origin/develop' into develop

release/3.x.x
Christian Kratky hace 5 años
padre
commit
f3ea7008e5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      Source/MQTTnet/Internal/AsyncLock.cs

+ 1
- 1
Source/MQTTnet/Internal/AsyncLock.cs Ver fichero

@@ -23,7 +23,7 @@ namespace MQTTnet.Internal
public Task<IDisposable> WaitAsync(CancellationToken cancellationToken)
{
var task = _semaphore.WaitAsync(cancellationToken);
if (task.IsCompleted)
if (task.Status == TaskStatus.RanToCompletion)
{
return _releaser;
}


Cargando…
Cancelar
Guardar