Fix runtime

This commit is contained in:
2024-10-20 16:49:59 -04:00
parent 070babb17a
commit 114a10416a
29 changed files with 133 additions and 2677 deletions

View File

@@ -50,10 +50,6 @@ public class GetCreatorByAliasHandler(
}
else
{
var followerCount = await context.Followers.CountAsync(
s => s.CreatorId == creator.Id,
cancellationToken: ct);
var model = new CreatorModel(
creator.Id,
creator.CreatedBy,
@@ -62,8 +58,7 @@ public class GetCreatorByAliasHandler(
creator.Title,
creator.Socials,
creator.Colors,
creator.Images,
followerCount);
creator.Images);
await SendAsync(model, cancellation: ct);
}