change: winlb now has 9 items per page to look not broken

This commit is contained in:
Kwoth
2024-12-11 17:21:25 +00:00
parent adfce6670c
commit 5209ba802a
2 changed files with 4 additions and 4 deletions

View File

@@ -152,7 +152,7 @@ public partial class Gambling
if (user.StartsWith("??"))
user = x.UserId.ToString();
outputItems.Add(new WinLbStat(i + 1 + (page * 10), user, x.Game, x.MaxWin));
outputItems.Add(new WinLbStat(i + 1 + (page * 9), user, x.Game, x.MaxWin));
}
return outputItems;
@@ -169,7 +169,7 @@ public partial class Gambling
await Response()
.Paginated()
.PageItems(p => GetCachedWinLbAsync(p))
.PageSize(10)
.PageSize(9)
.Page((items, curPage) =>
{
var eb = CreateEmbed()

View File

@@ -60,8 +60,8 @@ public sealed class UserBetStatsService : INService
await using var ctx = _db.GetDbContext();
return await ctx.GetTable<UserBetStats>()
.OrderByDescending(x => x.MaxWin)
.Skip(page * 10)
.Take(10)
.Skip(page * 9)
.Take(9)
.ToArrayAsyncLinqToDB();
}
}