Fix call to get_or_create_user in seed binary

This commit is contained in:
Max Brunsfeld 2024-01-22 14:15:41 -08:00
parent 03e008959f
commit b9458fe4ac

View file

@ -68,7 +68,7 @@ async fn main() {
user_count += 1; user_count += 1;
db.get_or_create_user_by_github_account( db.get_or_create_user_by_github_account(
&github_user.login, &github_user.login,
Some(github_user.id), github_user.id,
github_user.email.as_deref(), github_user.email.as_deref(),
) )
.await .await