From b9458fe4ac07b6bc86b29cadeb18a3878590b8ba Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Mon, 22 Jan 2024 14:15:41 -0800 Subject: [PATCH] Fix call to get_or_create_user in seed binary --- crates/collab/src/bin/seed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/collab/src/bin/seed.rs b/crates/collab/src/bin/seed.rs index ed24ccef75..bca2a7899a 100644 --- a/crates/collab/src/bin/seed.rs +++ b/crates/collab/src/bin/seed.rs @@ -68,7 +68,7 @@ async fn main() { user_count += 1; db.get_or_create_user_by_github_account( &github_user.login, - Some(github_user.id), + github_user.id, github_user.email.as_deref(), ) .await