Skip to content

Commit ab016fc

Browse files
authored
Merge pull request #1494 from danielcweber/Fix1493
Fix #1493.
2 parents 41102c6 + 64b5ea2 commit ab016fc

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)