We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1820a0f commit 9fcf932Copy full SHA for 9fcf932
internal/ghmcp/server.go
@@ -497,7 +497,7 @@ func newGHECHost(hostname string) (apiHost, error) {
497
return apiHost{}, fmt.Errorf("failed to parse GHEC GraphQL URL: %w", err)
498
}
499
500
- uploadURL, err := url.Parse(fmt.Sprintf("https://uploads.%s", u.Hostname()))
+ uploadURL, err := url.Parse(fmt.Sprintf("https://uploads.%s/", u.Hostname()))
501
if err != nil {
502
return apiHost{}, fmt.Errorf("failed to parse GHEC Upload URL: %w", err)
503
0 commit comments