mirror of
https://github.com/RPCS3/discord-bot.git
synced 2024-12-13 05:35:58 +00:00
code formatting
This commit is contained in:
parent
d997ef12d7
commit
51266b3b32
@ -68,7 +68,13 @@ namespace CompatBot.Database.Providers
|
||||
|
||||
foreach (var sci in funcsToRemove.Where(sci => sci.Function.Contains('(')))
|
||||
{
|
||||
var productIds = await db.SyscallToProductMap.AsNoTracking().Where(m => m.SyscallInfoId == sci.Id).Select(m => m.Product.ProductCode).Distinct().ToListAsync().ConfigureAwait(false);
|
||||
var productIds = await db.SyscallToProductMap
|
||||
.AsNoTracking()
|
||||
.Where(m => m.SyscallInfoId == sci.Id)
|
||||
.Select(m => m.Product.ProductCode)
|
||||
.Distinct()
|
||||
.ToListAsync()
|
||||
.ConfigureAwait(false);
|
||||
links += productIds.Count;
|
||||
foreach (var productId in productIds)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user