You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log.Info("User %s has been redirected to %s", results.OwnerName, owner.Name)
118
+
results.OwnerName=owner.Name
119
+
} else {
120
+
log.Warn("User %s has a redirect to user with ID %d, but no user with this ID could be found. Trying without redirect...", results.OwnerName, redirectedUserID)
log.Info("Repository %s/%s has been redirected to %s/%s", results.OwnerName, results.RepoName, redirectedRepo.OwnerName, redirectedRepo.Name)
152
+
results.RepoName=redirectedRepo.Name
153
+
results.OwnerName=redirectedRepo.OwnerName
154
+
owner.ID=redirectedRepo.OwnerID
155
+
} else {
156
+
log.Warn("Repo %s/%s has a redirect to repo with ID %d, but no repo with this ID could be found. Trying without redirect...", results.OwnerName, results.RepoName, redirectedRepoID)
157
+
}
158
+
}
159
+
134
160
// Now get the Repository and set the results section
0 commit comments