Skip to content

Commit 64b5ea2

Browse files
committed
Fix #1493.
1 parent 41102c6 commit 64b5ea2

File tree

1 file changed

+2
-2
lines changed
  • Rx.NET/Source/src/System.Reactive/Linq/Observable

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ private void Propagate(ulong currentid)
7575
if (_hasValue && _id == currentid)
7676
{
7777
ForwardOnNext(_value!);
78-
}
7978

80-
_hasValue = false;
79+
_hasValue = false;
80+
}
8181
}
8282
}
8383

0 commit comments

Comments
 (0)