mirror of
https://github.com/Caraxi/mare.server.git
synced 2026-02-15 23:47:42 +01:00
break, not return
This commit is contained in:
parent
63286127a2
commit
4c1131a988
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ public class RequestQueueService : IHostedService
|
||||||
_userQueueRequests[i] = null;
|
_userQueueRequests[i] = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((!_queue.Any() && !_priorityQueue.Any()) || _userQueueRequests[i] != null) return;
|
if ((!_queue.Any() && !_priorityQueue.Any()) || _userQueueRequests[i] != null) break;
|
||||||
|
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue