Fix async chat actions and channel sync

This commit is contained in:
sevenhill
2026-07-06 21:38:35 +03:00
parent 84bf7e96c9
commit 7aae5acda3
6 changed files with 1220 additions and 89 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ public sealed class MaxOutboxService(
.Where(chat => IsChatActionDue(chat, now))
.OrderBy(chat => chat.PendingMaxActionRequestedAt ?? chat.UpdatedAt)
.ThenBy(chat => chat.Id)
.Take(1)
.Take(10)
.ToList();
var processed = 0;