Skip to content

Commit 50b2b1f

Browse files
committed
Updated ComputeRealRange to detect when start and end are in the same window, and to handle the edge case where start is exactly the last valid date/time before the window.
1 parent 4660f9c commit 50b2b1f

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

Source/Bogus/DataSets/Date.cs

+11-3
Original file line numberDiff line numberDiff line change
@@ -178,12 +178,20 @@ private void ComputeRealRange(ref DateTime start, ref DateTime end)
178178
#if !NETSTANDARD1_3
179179
var window = GetForwardDSTTransitionWindow(start);
180180

181-
if ((start > window.Start) && (start <= window.End))
182-
start = new DateTime(window.End.Ticks, start.Kind);
181+
if ((start >= window.Start) && (start <= window.End))
182+
{
183+
if ((start == window.Start) && (end >= window.Start) && (end <= window.End))
184+
end = start;
185+
else
186+
start = new DateTime(window.End.Ticks, start.Kind);
187+
188+
if (start == end)
189+
return;
190+
}
183191

184192
window = GetForwardDSTTransitionWindow(end);
185193

186-
if ((end >= window.Start) && (end < window.End))
194+
if ((end >= window.Start) && (end <= window.End))
187195
end = new DateTime(window.Start.Ticks, end.Kind);
188196

189197
if (start > end)

0 commit comments

Comments
 (0)