This commit is contained in:
Jesse Duffield 2024-06-29 18:08:17 +10:00
parent bcb70119bb
commit a8edf269f1

View file

@ -287,6 +287,10 @@ func getRemotesToOwnersMap(remotes []*models.Remote) map[string]string {
continue continue
} }
if !strings.Contains(remote.Urls[0], ":") {
continue
}
res[remote.Name] = getRepoInfoFromURL(remote.Urls[0]).Owner res[remote.Name] = getRepoInfoFromURL(remote.Urls[0]).Owner
} }
return res return res