mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-09 21:26:14 +03:00
collab: Look up users using github_user_id
when backfilling (#16708)
This PR updates the user backfiller to look up the GitHub users using the `github_user_id` instead of `github_login`. Release Notes: - N/A
This commit is contained in:
parent
fb35f15526
commit
db4ff7da6b
@ -75,8 +75,8 @@ impl UserBackfiller {
|
||||
for user in users_missing_github_user_created_at {
|
||||
match self
|
||||
.fetch_github_user(&format!(
|
||||
"https://api.github.com/users/{}",
|
||||
user.github_login
|
||||
"https://api.github.com/user/{}",
|
||||
user.github_user_id
|
||||
))
|
||||
.await
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user