Skip to content

Commit

Permalink
Fix comments not having user (#613)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwinston-bn authored Dec 18, 2024
1 parent d7e60f8 commit 1159fe0
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ await dbContext.ResourceContentVersionAssignedUserHistory
{
var commentThreads = await dbContext.ResourceContentVersionCommentThreads.Include(x => x.CommentThread)
.ThenInclude(x => x.Comments)
.ThenInclude(x => x.User)
.Where(x => x.ResourceContentVersionId == relevantContentVersion.Id)
.ToListAsync(ct);
resourceContent.CommentThreads = new CommentThreadsResponse
Expand Down

0 comments on commit 1159fe0

Please sign in to comment.