Skip to content

Commit

Permalink
CB-4460 fix unexpected team role modification
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-skoblikov committed May 10, 2024
1 parent 814f16a commit b70ab4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ public void setUserTeamRole(
) {
dbStat.setString(1, userId);
dbStat.setString(2, teamId);
JDBCUtils.setStringOrNull(dbStat, 3, teamId);
JDBCUtils.setStringOrNull(dbStat, 3, teamRole);
} catch (SQLException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit b70ab4c

Please sign in to comment.