chore: bump reva

This commit is contained in:
Florian Schade
2024-09-10 11:49:37 +02:00
parent b0c23dce64
commit 1b6c6c1ad3
4 changed files with 5 additions and 12 deletions

View File

@@ -104,11 +104,7 @@ func normalizeDomain(d string) (string, error) {
return "", err
}
normalizedDomain := u.Hostname()
if port := u.Port(); port != "" {
normalizedDomain += ":" + port
}
return normalizedDomain, nil
return u.Host, nil
}
func (a *authorizer) GetInfoByDomain(_ context.Context, domain string) (*ocmprovider.ProviderInfo, error) {