Merge branch 'next'

This commit is contained in:
Jens Langhammer 2021-08-09 00:12:04 +02:00
commit 3d5eebda3b
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ package proxy
import ( import (
"crypto/tls" "crypto/tls"
"fmt"
"net" "net"
"net/http" "net/http"
"net/url" "net/url"
@ -38,7 +39,7 @@ func intToPointer(i int) *int {
func (pb *providerBundle) replaceLocal(url string) string { func (pb *providerBundle) replaceLocal(url string) string {
if strings.Contains(url, "localhost:8000") { if strings.Contains(url, "localhost:8000") {
f := strings.ReplaceAll(url, "localhost:8000", pb.s.ak.Client.GetConfig().Host) f := strings.ReplaceAll(url, "localhost:8000", pb.s.ak.Client.GetConfig().Host)
f = strings.ReplaceAll(f, "http", pb.s.ak.Client.GetConfig().Scheme) f = strings.ReplaceAll(f, "http://", fmt.Sprintf("%s://", pb.s.ak.Client.GetConfig().Scheme))
return f return f
} }
return url return url