mirror of
https://gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud
synced 2025-06-24 18:52:26 +00:00
fix invalid instance url
This commit is contained in:
@ -56,10 +56,14 @@ type Client struct {
|
||||
}
|
||||
|
||||
func NewClient(hostname string) (*Client, error) {
|
||||
baseURL, err := url.Parse(hostname)
|
||||
baseURL, err := url.ParseRequestURI(hostname)
|
||||
if err != nil {
|
||||
baseURL, err = url.ParseRequestURI("https://" + hostname)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
|
||||
c := Client{
|
||||
baseURL: baseURL,
|
||||
headers: map[string]string{
|
||||
|
Reference in New Issue
Block a user