Daniel Weber 4 years ago
parent
commit
64b5ea297c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Rx.NET/Source/src/System.Reactive/Linq/Observable/Throttle.cs

+ 2 - 2
Rx.NET/Source/src/System.Reactive/Linq/Observable/Throttle.cs

@@ -75,9 +75,9 @@ namespace System.Reactive.Linq.ObservableImpl
                     if (_hasValue && _id == currentid)
                     if (_hasValue && _id == currentid)
                     {
                     {
                         ForwardOnNext(_value!);
                         ForwardOnNext(_value!);
-                    }
 
 
-                    _hasValue = false;
+                        _hasValue = false;
+                    }
                 }
                 }
             }
             }