mirror of
https://github.com/elyby/chrly.git
synced 2024-12-23 21:50:03 +05:30
Fix cape url scheme
This commit is contained in:
parent
6453583e31
commit
2df31704c1
@ -151,7 +151,8 @@ func (ctx *Skinsystem) texturesHandler(response http.ResponseWriter, request *ht
|
|||||||
|
|
||||||
if capeErr == nil && cape != nil {
|
if capeErr == nil && cape != nil {
|
||||||
textures.Cape = &mojang.CapeTexturesResponse{
|
textures.Cape = &mojang.CapeTexturesResponse{
|
||||||
Url: request.URL.Scheme + "://" + request.Host + "/cloaks/" + username,
|
// Use statically http since the application doesn't support TLS
|
||||||
|
Url: "http://" + request.Host + "/cloaks/" + username,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user