mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 22:17:22 +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;
|
||||
}
|
||||
|
||||
if ((!_queue.Any() && !_priorityQueue.Any()) || _userQueueRequests[i] != null) return;
|
||||
if ((!_queue.Any() && !_priorityQueue.Any()) || _userQueueRequests[i] != null) break;
|
||||
|
||||
while (true)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue