mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 15:17:23 +01:00
fix queue processing
This commit is contained in:
parent
a66e93c901
commit
024796c459
1 changed files with 1 additions and 1 deletions
|
|
@ -163,7 +163,7 @@ public class RequestQueueService : IHostedService
|
|||
_userQueueRequests[i] = null;
|
||||
}
|
||||
|
||||
if ((!_queue.Any() && !_priorityQueue.Any()) || _userQueueRequests[i] != null) break;
|
||||
if (!_queue.Any() && !_priorityQueue.Any()) break;
|
||||
|
||||
while (true)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue