fix #13 - moved increment to end of loop
This commit is contained in:
parent
a96a3c3a82
commit
ffedc09471
|
@ -68,7 +68,7 @@ namespace AccessQueueService.Data
|
||||||
int filledSpots = 0;
|
int filledSpots = 0;
|
||||||
while (filledSpots < openSpots && _nowServing < _nextUnusedTicket)
|
while (filledSpots < openSpots && _nowServing < _nextUnusedTicket)
|
||||||
{
|
{
|
||||||
if (_accessQueue.TryGetValue(_nowServing++, out var nextUser))
|
if (_accessQueue.TryGetValue(_nowServing, out var nextUser))
|
||||||
{
|
{
|
||||||
_accessQueue.Remove(_nowServing);
|
_accessQueue.Remove(_nowServing);
|
||||||
_queueNumbers.Remove(nextUser.UserId);
|
_queueNumbers.Remove(nextUser.UserId);
|
||||||
|
@ -85,6 +85,7 @@ namespace AccessQueueService.Data
|
||||||
};
|
};
|
||||||
filledSpots++;
|
filledSpots++;
|
||||||
}
|
}
|
||||||
|
_nowServing++;
|
||||||
}
|
}
|
||||||
return filledSpots == openSpots;
|
return filledSpots == openSpots;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue