Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
param108 committed Feb 24, 2024
1 parent e0943d8 commit feb96a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/store/postgres/sp_groups.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func (db *PostgresDB) GetSPGroupUsers(
if err := db.db.Table("sp_group_users").Where(
"sp_group_users.sp_group_id = ? and sp_group_users.writer = ? and sp_group_users.deleted = false",
groupID, writer).Joins(
"left join sp_users on sp_users.id = sp_group_user.sp_user_id").Select(
"left join sp_users on sp_users.id = sp_group_users.sp_user_id").Select(
"sp_users.id as id," +
"sp_users.name as name," +
"sp_users.photo_url as photo_url," +
Expand Down

0 comments on commit feb96a1

Please sign in to comment.