Skip to content

Commit

Permalink
Fix multi email lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
augustuswm committed Aug 30, 2024
1 parent d7eecbc commit ee0a928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v-model/src/storage/postgres.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ where
}

if let Some(email) = email {
query = query.filter(api_user_provider::emails.contains(email));
query = query.filter(api_user_provider::emails.overlaps_with(email));
}

if let Some(groups) = groups {
Expand Down

0 comments on commit ee0a928

Please sign in to comment.