Преглед изворни кода

Merge pull request #1494 from danielcweber/Fix1493

Fix #1493.
Daniel Weber пре 4 година
родитељ
комит
ab016fccf1
1 измењених фајлова са 2 додато и 2 уклоњено
  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)
                     {
                         ForwardOnNext(_value!);
-                    }
 
-                    _hasValue = false;
+                        _hasValue = false;
+                    }
                 }
             }