Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
akirkinis committed Feb 22, 2024
1 parent e5cf337 commit b6100ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions IguideME.Web/Services/LMSHandlers/BrightspaceHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,8 @@ IEnumerable<User> users
FROM grade_results
INNER JOIN users
ON users.user_id = grade_results.user_id
WHERE org_unit_id = @courseID
AND user_id
WHERE grade_results.org_unit_id = @courseID
AND grade_results.user_id
IN ({string.Join(",", users.Select((_, index) => $"@userID{index}"))})",
parameters
)
Expand Down

0 comments on commit b6100ef

Please sign in to comment.